Milvus GO SDK is an open-source project and its source code is hosted on GitHub.
Milvus version | Recommended SDK version |
---|---|
1.0.x | 1.0.0 |
1.1.x | 1.1.0 |
2.0.x | 2.0.0 |
Note: Milvus and GO SDK are NOT compatible across major versions.
Install via go get
.
$ go get -u github.com/milvus-io/milvus-sdk-go/v2
Include Milvus GO SDK in your application.
import "github.com/milvus-io/milvus-sdk-go/v2/client"
//...other snippet ...
client, err := client.NewGrpcClient(context.Background(), "address_of_milvus")
if err != nil {
// handle error
}
client.HasCollection(context.Background(), "YOUR_COLLECTION_NAME")
We are committed to building a collaborative, exuberant open-source community for Milvus. Therefore, contributions to Milvus GO SDK are welcome from everyone. Refer to Contributing Guideline before making contributions to this project. You can file an issue if you need any assistance or want to propose your ideas.