Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 695 Bytes

README.md

File metadata and controls

24 lines (21 loc) · 695 Bytes

milvus-sdk-go

Go SDK for Milvus distributed high-performance vector search engine

We welcome all kinds of contributions for milvus-sdk-go.

Getting started

You will need go 1.12

Install

Use go get to install the latest version of the library. This command will install the milvus-go-sdk library and its dependencies:

go get -u github.com/milvus-io/milvus-sdk-go/milvus

Next, include milvus-sdk-go in your application:

import "github.com/milvus-io/milvus-sdk-go/milvus"

Try go example

cd [milvus-sdk-go root path]/examples
go run MilvusClientExample.go

Additional information

  • The go source code is formatted using go fmt and golint