evobench_tools/key_val_fs/mod.rs
1//! Filesystem based key-value database
2//!
3//! Simple filesystem based key-value database using a separate file
4//! in the file system per mapping, and offering locking operations on
5//! each entry for mutations/deletions. The goal of this library is
6//! not speed, but reliability, locking features, and ease of
7//! inspection of the state with standard command line tools.
8
9pub mod as_key;
10pub mod key_val;
11pub mod queue;