add the missing MongoDocStatusStorage
This commit is contained in:
@@ -6,7 +6,6 @@ password = your-password
|
|||||||
[mongodb]
|
[mongodb]
|
||||||
uri = mongodb+srv://name:password@your-cluster-address
|
uri = mongodb+srv://name:password@your-cluster-address
|
||||||
database = lightrag
|
database = lightrag
|
||||||
graph = false
|
|
||||||
|
|
||||||
[redis]
|
[redis]
|
||||||
uri=redis://localhost:6379/1
|
uri=redis://localhost:6379/1
|
||||||
|
@@ -80,7 +80,12 @@ STORAGE_IMPLEMENTATIONS = {
|
|||||||
"required_methods": ["query", "upsert"],
|
"required_methods": ["query", "upsert"],
|
||||||
},
|
},
|
||||||
"DOC_STATUS_STORAGE": {
|
"DOC_STATUS_STORAGE": {
|
||||||
"implementations": ["JsonDocStatusStorage", "PGDocStatusStorage"],
|
"implementations": [
|
||||||
|
"JsonDocStatusStorage",
|
||||||
|
"PGDocStatusStorage",
|
||||||
|
"PGDocStatusStorage",
|
||||||
|
"MongoDocStatusStorage",
|
||||||
|
],
|
||||||
"required_methods": ["get_pending_docs"],
|
"required_methods": ["get_pending_docs"],
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user