Aerospike
Aerospike 是一個高效能、分散式資料庫,以其速度和可擴展性而聞名,現在支援向量儲存和搜尋,能夠檢索和搜尋用於機器學習和 AI 應用程式的嵌入向量。請參閱 此處 的 Aerospike Vector Search (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://langchain-python.dev.org.tw/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://langchain-python.dev.org.tw/docs/integrations/vectorstores/aerospike/).