#sdk #progress #milvus

milvus-sdk-rust

The official Milvus Rust SDK

1 unstable release

0.1.0 May 23, 2023

#1262 in Data structures

Download history 102/week @ 2024-03-13 81/week @ 2024-03-20 49/week @ 2024-03-27 109/week @ 2024-04-03 86/week @ 2024-04-10 38/week @ 2024-04-17 37/week @ 2024-04-24 37/week @ 2024-05-01 50/week @ 2024-05-08 86/week @ 2024-05-15 98/week @ 2024-05-22 179/week @ 2024-05-29 109/week @ 2024-06-05 96/week @ 2024-06-12 91/week @ 2024-06-19 123/week @ 2024-06-26

449 downloads per month
Used in 2 crates

Custom license

760KB
17K SLoC

Go 11K SLoC // 0.0% comments Rust 6K SLoC // 0.0% comments Shell 56 SLoC // 0.2% comments

Milvus Rust SDK

Rust SDK for Milvus.

This is still in progress, be careful to use it in your production

Get Started

Connect to milvus service and create collection:

#[tokio::main]
async fn main() -> Result<(), Error> {
    const URL: &str = "http://localhost:19530";

    let client = Client::new(URL).await?;

    let schema =
        CollectionSchemaBuilder::new("hello_milvus", "a guide example for milvus rust SDK")
            .add_field(FieldSchema::new_primary_int64(
                "id",
                "primary key field",
                true,
            ))
            .add_field(FieldSchema::new_float_vector(
                DEFAULT_VEC_FIELD,
                "feature field",
                256,
            ))
            .build()?;
    let collection = client.create_collection(schema.clone(), None).await?;
    Ok(())
}

Dependencies

~13–25MB
~447K SLoC