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.ac.cn/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.ac.cn/docs/integrations/vectorstores/aerospike/).