add the missing MongoDocStatusStorage
This commit is contained in:
parent
9a91b68e62
commit
637e7efa83
2 changed files with 6 additions and 2 deletions
|
|
@ -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"],
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue