Collection
createCollection() [READ MORE]
A MilvusClient interface. This method creates a collection with the specified schema.
dropCollection() [READ MORE]
A MilvusClient interface. This method drops a specified collection.
loadCollection() [READ MORE]
A MilvusClient interface. This method loads the specified collection and all the data within to memory for search or query.
releaseCollection() [READ MORE]
A MilvusClient interface. This method releases the specified collection and all data within it from memory.
describeCollection() [READ MORE]
A MilvusClient interface. This method shows the details of a collection, e.g. name, schema.
renameCollection() [READ MORE]
A MilvusClient interface. This method renames the specified collection.
alterCollection() [READ MORE]
Alter collection properties. Currently, it supports modifying the time to live (TTL) of a collection's data and enabling MMap of a collection.
getCollectionStatistics() [READ MORE]
A MilvusClient interface. This method shows the statistical information of the specified collection.
showCollections() [READ MORE]
A MilvusClient interface. This method lists all the collections or gets the collection loading status.
flush() [READ MORE]
A MilvusClient interface. This method triggers a flush action in which all growing segments in the specified collection are marked as sealed and then flushed to storage.
insert() [READ MORE]
A MilvusClient interface. This method inserts entities into a specified collection.
insertAsync() [READ MORE]
A MilvusClient interface. This method inserts entities asynchronously into a specified collection.
upsert() [READ MORE]
A MilvusClient interface. This method inserts new entities into a specified collection, and replaces them if the entities already exist.
upsertAsync [READ MORE]
A MilvusClient interface. This method inserts new entities into a specified collection, and replaces them if the entities already exist.
delete() [READ MORE]
A MilvusClient interface. This method deletes entity(s) based on the primary key filtered by boolean expression.
getLoadingProgress() [READ MORE]
A MilvusClient interface. This method gets loading collection progress.
getLoadState() [READ MORE]
A MilvusClient interface. This method gets the state of loading collection progress.