FalkorDB
What is
FalkorDB?
- FalkorDB is an
open-source database management systemthat specializes in graph database technology.- FalkorDB allows you to represent and store data in nodes and edges, making it ideal for handling connected data and relationships.
- FalkorDB Supports OpenCypher query language with proprietary extensions, making it easy to interact with and query your graph data.
- With FalkorDB, you can achieve high-performance
graph traversals and queries, suitable for production-level systems.
Get started with FalkorDB by visiting their website.
安装与设置
- 使用
pip install falkordb langchain-falkordb安装 Python SDK
VectorStore
FalkorDB 向量索引用作向量存储, 无论是用于语义搜索还是示例选择。
from langchain_community.vectorstores.falkordb_vector import FalkorDBVector
API 参考:FalkorDBVector
or
from langchain_falkordb.vectorstore import FalkorDBVector
查看一个 使用示例
存储
查看一个 使用示例。
from langchain_falkordb.message_history import (
FalkorDBChatMessageHistory,
)