Skip to main content
Open on GitHub

Aerospike

Aerospike 是一种高性能、分布式数据库,以速度和可扩展性著称,现在支持向量存储和搜索功能,能够为机器学习和AI应用进行嵌入向量检索和搜索。 查看 Aerospike 向量搜索(AVS)的文档 这里.

安装与设置

安装AVS Python SDK和AVS语言链向量存储:

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/).