Aerospike
Aerospike 是一个以速度和可扩展性著称的高性能分布式数据库,现在支持向量存储和搜索,能够为机器学习和人工智能应用检索和搜索嵌入向量。 查看 Aerospike 向量搜索 (AVS) 的文档 这里。
安装与设置
安装AVS Python SDK和AVS langchain向量存储:
pip install aerospike-vector-search langchain-community
See the documentation for the Ptyhon SDK [here](https://aerospike-vector-search-python-client.readthedocs.io/en/latest/index.html).
The documentation for the AVS langchain vector store is [here](https://python.langchain.com/api_reference/community/vectorstores/langchain_community.vectorstores.aerospike.Aerospike.html).
## Vector Store
To import this vectorstore:
```python
from langchain_community.vectorstores import Aerospike
See a usage example [here](https://python.langchain.com/docs/integrations/vectorstores/aerospike/).