docs.rs failed to build qdrant-client-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
qdrant-client-1.16.0
rust-client
Rust client for Qdrant vector search engine
Installation
Usage
Run Qdrant with enabled gRPC interface:
# With env variable
Or by updating the configuration file:
service:
grpc_port: 6334
More info about gRPC in documentation.
Making requests
use Channel;
let uri = "http://localhost:6334".parse.unwrap;
let endpoint = builder
.timeout
.connect_timeout
.keep_alive_while_idle;
// `connect` is using the `Reconnect` network service internally to handle dropped connections
let channel = endpoint.connect.await.unwrap; // Unwrap in test only
let mut client = new;
let collections_list = client.collection_api.list.await.unwrap;