Management
Methods related to cluster management.
AlterIndexProperties() [READ MORE]
This operation modifies properties of an existing index.
Index [READ MORE]
Interface for index configuration. Use constructor functions like NewAutoIndex() or NewHNSWIndex() to create instances.
Compact() [READ MORE]
This operation triggers compaction to merge small data segments into larger ones for better performance.
CompactionState [READ MORE]
Enumerates the possible states of a compaction operation.
CreateIndex() [READ MORE]
This operation creates an index on a specified field to accelerate vector similarity search or scalar filtering.
CreateIndexTask [READ MORE]
An async task returned by CreateIndex. Call Await() to block until the index build completes.
DescribeIndex() [READ MORE]
This operation returns detailed information about an index, including its type and parameters.
DropIndex() [READ MORE]
This operation drops an index from a collection field.
DropIndexProperties() [READ MORE]
This operation removes specified properties from an index.
Flush() [READ MORE]
This operation flushes all inserted data to persistent storage, ensuring data durability.
FlushTask [READ MORE]
An async task returned by Flush. Call Await() to block until flushing completes.
GetCompactionState() [READ MORE]
This operation returns the current state of a compaction operation.
GetLoadState() [READ MORE]
This operation returns the current load state and progress of a collection or partitions.
IndexDescription [READ MORE]
Describes an index including its type, parameters, build state, and row counts.
IndexType [READ MORE]
Enumerates the supported index algorithms for vector and scalar fields.
ListIndexes() [READ MORE]
This operation lists all indexes built on a specified collection.
LoadCollection() [READ MORE]
This operation loads a collection into memory for search and query operations.
LoadPartitions() [READ MORE]
This operation loads specific partitions of a collection into memory.
LoadState [READ MORE]
Represents the load state of a collection or partition, including progress percentage.
LoadTask [READ MORE]
An async task returned by LoadCollection/LoadPartitions. Call Await() to block until loading completes.
MetricType [READ MORE]
Enumerates the distance metric types used for vector similarity search.
RefreshLoad() [READ MORE]
This operation reloads a collection to include newly inserted data in search results.
ReleaseCollection() [READ MORE]
This operation releases a collection from memory to free up resources.
ReleasePartitions() [READ MORE]
This operation releases specific partitions from memory.