Add MongoDB support to kv-store-adapter #19
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR implements comprehensive MongoDB support for the kv-store-adapter library, adding it as a new backend option alongside the existing Redis, Elasticsearch, Memory, and Disk stores.
Implementation
The MongoDB store is implemented using the
motorasync MongoDB driver and follows the same patterns as existing store implementations:Key Features
expireAfterSecondsindexesArchitecture
The implementation extends
BaseManagedKVStoreand stores entries as MongoDB documents with this structure:Indexes are automatically created for:
{collection: 1, key: 1}(unique compound index for efficient lookups){expires_at: 1}(TTL index withexpireAfterSeconds: 0)Testing
The MongoDB store includes comprehensive tests that extend the existing
BaseStoreTestsclass, ensuring full compatibility with the KV Store Protocol. Tests cover:Dependencies
Adds
motor>=3.0.0as an optional dependency, installed via:Documentation
Updated both
README.mdandDEVELOPING.mdto include MongoDB in the list of supported backends and provide configuration examples for all connection methods.Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.