Firestore
FirestoreIndexStore #
基础类: KVIndexStore
Firestore 索引存储。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
firestore_kvstore
|
FirestoreKVStore
|
Firestore 键值存储 |
必需 |
namespace
|
str
|
索引存储的命名空间 |
无
|
源代码位于 llama-index-integrations/storage/index_store/llama-index-storage-index-store-firestore/llama_index/storage/index_store/firestore/base.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|
from_database classmethod
#
from_database(project: str, database: str, namespace: Optional[str] = None, collection_suffix: Optional[str] = None) -> FirestoreIndexStore
从 Firestore 数据库加载一个 FirestoreIndexStore。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
project
|
str
|
客户端代表操作的项目。 |
必需 |
database
|
str
|
客户端指向的数据库名称。 |
必需 |
namespace
|
str
|
文档存储的命名空间。 |
无
|
collection_suffix
|
str
|
集合名称的后缀 |
无
|
源代码位于 llama-index-integrations/storage/index_store/llama-index-storage-index-store-firestore/llama_index/storage/index_store/firestore/base.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|