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: While the library is in a very usable state and a decent amount of effort has been made to ensure it is correct and robust, it has not been extensively tested or used in production. 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 changes has been persisted to the file system at a certain point, use flush(). This operation saves the data with atomicity, effectively emulating a transaction, before returning:

rust db.flush()?;

Tip: When inserting a large amount of items, insert keys in sorted order for best performance. Inserting many random keys will be slow as it will require opening, writing, and closing the file that contains the position for it. If you need sorted ID generation, try algorithms based on Twitter Snowflake, MongoDB Object ID, or ULID.

For more information, check the examples directory and the API reference on docs.rs.

Features

By default, the features are enabled:

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 for backup) and debugging, see grebedb-tool.

Contributing

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

Roadmap

Possible improvements:

Not in scope

The following non-exhaustive features are not in scope and likely won't be implemented:

If you need more features or require better performance, it's likely you need a more powerful database with a Rust binding such as RocksDB or a traditional database like SQLite.

License

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