GrebeDB

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.

Crates.io docs.rs

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.

Design summary (limitations and guarantees)

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:

For details about the file format, see format.md.

Getting started

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.

Features

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.

Tool

For a command-line tool to provide basic manipulation (such as import, export) and debugging, see grebedb-tool.

Contributing

Please use the GitHub Issues, Pull Requests, and Discussions if you have any problems, bug fixes, or suggestions.

License

Copyright 2021 Christopher Foo. Licensed under Mozilla Public License 2.0.