InMemoryByteStore
本指南将帮助您开始使用内存中的键值存储。有关所有InMemoryByteStore
功能和配置的详细文档,请访问API参考。
概述
InMemoryByteStore
是 ByteStore
的一个非持久化实现,它将所有内容存储在 Python 字典中。它适用于演示和不需要在 Python 进程生命周期之外持久化的情况。
集成详情
类 | 包 | 本地 | JS 支持 | 包下载量 | 包最新版本 |
---|---|---|---|---|---|
InMemoryByteStore | langchain_core | ✅ | ✅ |
安装
LangChain 的 InMemoryByteStore
集成位于 langchain_core
包中:
%pip install -qU langchain_core
实例化
现在你可以实例化你的字节存储:
from langchain_core.stores import InMemoryByteStore
kv_store = InMemoryByteStore()
API Reference:InMemoryByteStore
用法
你可以使用mset
方法在键下设置数据,如下所示:
kv_store.mset(
[
["key1", b"value1"],
["key2", b"value2"],
]
)
kv_store.mget(
[
"key1",
"key2",
]
)
[b'value1', b'value2']
你可以使用mdelete
方法来删除数据:
kv_store.mdelete(
[
"key1",
"key2",
]
)
kv_store.mget(
[
"key1",
"key2",
]
)
[None, None]
API 参考
有关所有InMemoryByteStore
功能和配置的详细文档,请前往API参考:https://python.langchain.com/api_reference/core/stores/langchain_core.stores.InMemoryByteStore.html
相关
- 键值存储 概念指南