github.com/milvus-io/milvus-sdk-go/v2@v2.4.1/docs/README.md (about) 1 # API Documents 2 3 Below list the APIs that `Client` provides: 4 5 - [New Client](new_client.md): connect to a provided Milvus instance 6 - [List Collections](list_collections.md): list collections of the connected Milvus instance 7 - [Create Collection](create_collection.md): create collection according to the provided schema 8 - [Describe Collection](describe_collection.md): describe the collection with the specified name 9 - [Drop Collection](drop_collection.md): drop the collection with specified name 10 - [Load Collection](load_collection.md): load the collection for search by name 11 - [Release Collection](release_collection.md): release the loaded collection by name 12 13 - [Create Paritition](create_partition.md): create partition in a collection 14 - [Drop Partition](drop_partition.md): drop partition from a collection 15 - [Has Partition](has_partition.md): check if specified partition exists in the collection 16 - [Show Partitions](show_partitions.md): list the existing partitions of a specified collection 17 - [Load Partitions](load_partitions.md): load partitions of a collection for search 18 - [Release Partitions](release_partitions.md): release loaded partitions of a collection 19 20 - [Create Index](create_index.md): create index on the vector field of a collection 21 - [Drop Index](drop_index.md): drop index from the vector field of a collection 22 - [Describe index](describe_index.md): describe the index on the specified vector field 23 - [Get Index Build Progress](get_index_build_progress.md): get the index building progress information 24 25 - [Insert](insert.md): insert data into collection 26 - [Flush](flush.md): flush the inserted data 27 - [Search](search.md): search in the collection with provided criterion and vectors