Adjust storage position in STORAGE_IMPLEMENTATIONS

This commit is contained in:
yangdx
2025-04-02 16:40:25 +08:00
parent c2f007199f
commit 454e21a868

View File

@@ -2,10 +2,10 @@ STORAGE_IMPLEMENTATIONS = {
"KV_STORAGE": { "KV_STORAGE": {
"implementations": [ "implementations": [
"JsonKVStorage", "JsonKVStorage",
"MongoKVStorage",
"RedisKVStorage", "RedisKVStorage",
# "TiDBKVStorage",
"PGKVStorage", "PGKVStorage",
"MongoKVStorage",
# "TiDBKVStorage",
], ],
"required_methods": ["get_by_id", "upsert"], "required_methods": ["get_by_id", "upsert"],
}, },
@@ -13,11 +13,11 @@ STORAGE_IMPLEMENTATIONS = {
"implementations": [ "implementations": [
"NetworkXStorage", "NetworkXStorage",
"Neo4JStorage", "Neo4JStorage",
"PGGraphStorage",
"AGEStorage",
# "MongoGraphStorage", # "MongoGraphStorage",
# "TiDBGraphStorage", # "TiDBGraphStorage",
"AGEStorage",
# "GremlinStorage", # "GremlinStorage",
"PGGraphStorage",
], ],
"required_methods": ["upsert_node", "upsert_edge"], "required_methods": ["upsert_node", "upsert_edge"],
}, },
@@ -26,11 +26,11 @@ STORAGE_IMPLEMENTATIONS = {
"NanoVectorDBStorage", "NanoVectorDBStorage",
"MilvusVectorDBStorage", "MilvusVectorDBStorage",
"ChromaVectorDBStorage", "ChromaVectorDBStorage",
# "TiDBVectorDBStorage",
"PGVectorStorage", "PGVectorStorage",
"FaissVectorDBStorage", "FaissVectorDBStorage",
"QdrantVectorDBStorage", "QdrantVectorDBStorage",
"MongoVectorDBStorage", "MongoVectorDBStorage",
# "TiDBVectorDBStorage",
], ],
"required_methods": ["query", "upsert"], "required_methods": ["query", "upsert"],
}, },