High-level API
createCollection() [READ MORE]
A MilvusClient interface. This method creates a collection with simple parameters.
listCollections() [READ MORE]
A MilvusClient interface. This method lists all the collections.
insert() [READ MORE]
A MilvusClient interface. This method inserts entities into a specified collection.
delete() [READ MORE]
A MilvusClient interface. This method deletes entity(s) based on the primary key ids.
get() [READ MORE]
The MilvusClient interface. This method gets entity(s) based on the primary field ids. Note that the order of the returned entities can not be guaranteed.
query() [READ MORE]
The MilvusClient interface. This method queries entity(s) based on scalar field(s) filtered by boolean expression. Note that the order of the returned entities can not be guaranteed.
search() [READ MORE]
The MilvusClient interface. This method conducts an approximate nearest neighbor (ANN) search on a vector field and pairs up with a Boolean expression to conduct filtering on scalar fields before searching.