Loading
Aerospike Vector Search (AVS) Python client 3.0.0 Release Notes
October 24, 2024
New in this version
This version adds support for Aerospike Vector Search server 0.11.0.
AVS server compatibility
AVS Python client 3.0.0 is compatible only with AVS server versions 0.11.0 and later.
Breaking changes
- Change the return type of AdminClient.index_get_status from
int
totypes.IndexStatusResponse
. [VEC-377] - Rename HnswBatchingParams fields:
max_records
toindex_max_records
andinterval
toindex_interval
. [VEC-377] - Rename HnswParams field:
caching_params
toindex_caching_params
. [VEC-377]
New features
- Add number of vectors and vertices indexed to the output of the
index_get_status
method. [VEC-377] - Adds support for caching vector records. [VEC-377]
- Enables HNSW index and record caching that never expires. [VEC-377]
- Adds support for configuring reindex batch parameters. [VEC-377]
- Support for toggling vector integrity checks. [VEC-377]