GrebeDB is a Rust library that provides a lightweight embedded key-value store/database backed by files in a virtual file system interface. It is intended for single-process applications that prefer a key-value database-like interface to data instead operating on file formats directly.
Note: The library is not fully production-ready and has not been extensively tested, but it is in a usable state. Use with caution and make backups regularly of important data.
Since there are too many key-value stores, the design of the database is immediately described upfront for you to decide whether GrebeDB is fit for your use:
get
, put
, remove
, and cursor
are provided. There's no support for transactions, but each operation themselves are atomic. Consistency is provided by file copy-on-writes, incrementing revision counters, and atomic file renames.For details about the file format, see format.md.
Remember to add the grebedb
crate dependency to your Cargo.toml.
A GrebeDB database is stored as multiple files in a directory. The following creates a database using the given path and default options:
rust
let options = Options::default();
let mut db = Database::open_path("path/to/empty/directory/", options)?;
Storing, retrieving, and deleting keys is as simple as using the get()
, put()
, and remove()
functions:
```rust db.put("my_key", "hello world")?;
println!("The value of mykey is {:?}", db.get("mykey")?);
db.remove("my_key")?;
println!("The value of mykey is now {:?}", db.get("mykey")?); ```
To get all the key-values, use cursor()
:
rust
for (key, value) in db.cursor() {
println!("key = {}, value = {}", key, value);
}
The database uses an internal cache and automatically delays writing data to the file system. If you want to ensure all internally cached data has been persisted to the file system at a certain point, use flush()
:
rust
db.flush()?;
For more information, check the examples directory and the API reference on docs.rs.
By default, the zstd
crate is enabled for compression, fslock
is for cross-platform file locking, and getrandom
is a dependency for uuid
. To disable them, use default-features = false
in your Cargo.toml file.
For a command-line tool to provide basic manipulation (such as import, export) and debugging, see grebedb-tool.
Please use the GitHub Issues, Pull Requests, and Discussions if you have any problems, bug fixes, or suggestions.
Copyright 2021 Christopher Foo. Licensed under Mozilla Public License 2.0.