ReadonlynameThe name of the store (e.g. 'mongodb', 'redis', 'dynamodb')
ReadonlylibraryThe client library being used
Returns the underlying MilvusClient for anything not wrapped here.
Create a collection with an explicit field schema (primary key + one or more vector fields + optional scalars).
List all collections.
Load a collection's data into query nodes' memory so it can be searched/queried.
OptionalreplicaNumber: numberRelease a collection's data from memory (it remains persisted; reload with loadCollection() to search it again).
OptionalfieldName: stringOptionalindexName: stringOptionalfieldName: stringApproximate-nearest-neighbor search against a vector field. Ranks by
the collection's index metric (L2/IP/COSINE/...), optionally
narrowed by a scalar filter expression evaluated alongside the
vector comparison.
Scalar-only lookup (no vector similarity) via a filter expression and/or primary key list.
Fetch specific rows by primary key. Equivalent to query() with ids set, using Milvus's dedicated Get RPC.
OptionaloutputFields: string[]Count rows matching an optional filter expression (all rows if omitted).
Optionalfilter: string
MilvusStorewraps@zilliz/milvus2-sdk-node'sMilvusClientand exposes Milvus's collection/index/data/partition operations as a typed, promise-based API.