Valkey Vector Store
Valkey is an open source (BSD) high-performance key/value datastore that supports a variety of workloads and rich datastructures including vector search.Installation
Usage
Parameters
Let’s see the available parameters for thevalkey
config:
Parameter | Description | Default Value |
---|---|---|
collection_name | The name of the collection to store the vectors | mem0 |
valkey_url | Connection URL for the Valkey server | valkey://localhost:6379 |
embedding_model_dims | Dimensions of the embedding model | 1536 |
index_type | Vector index algorithm (hnsw or flat ) | hnsw |
hnsw_m | Number of bi-directional links for HNSW | 16 |
hnsw_ef_construction | Size of dynamic candidate list for HNSW | 200 |
hnsw_ef_runtime | Size of dynamic candidate list for search | 10 |
distance_metric | Distance metric for vector similarity | cosine |