Overlay mechanism for key-value embedded databases

x 52ff2bf06e tree: name fn added 1 месяц назад
src 52ff2bf06e tree: name fn added 1 месяц назад
tests 7fdf312f9c Initial commit 1 месяц назад
.gitignore 7fdf312f9c Initial commit 1 месяц назад
Cargo.toml 7fdf312f9c Initial commit 1 месяц назад
LICENSE.md 7fdf312f9c Initial commit 1 месяц назад
README.md 7fdf312f9c Initial commit 1 месяц назад

README.md

kvdb-overlay

This Rust library serves as a minimal overlay mechanism for various key-value embedded databases.

This mechanism enables us to simulate changes in a database/tree so that keys and values can be dynamically mutated, while avoiding having to change the underlying database. With this, we can perform changes to the trees and access the latest changes in-memory, and then only when we're satisfied with the results, we can actually atomically write it into the actual database.

This functionality can also serve as a rollback-like mechanism for the database.

Currently supported databases:

Usage examples are offered in the repository as test units, and docs can be found on docs.rs/kvdb-overlay.

License

GNU AGPLv3.