flat_db 0.6.0

Flat file database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Flat file database with chunked storage.
//!
//! Chunking achieves a balance between minimizing the number of file operations
//! and the performance cost of serializing large numbers of items to a flat file
//! format that can be manually edited and version controlled.

pub use file_table::*;
pub use hash::*;
pub use table::*;

mod file_table;
mod hash;
mod lock_guard;
mod table;
#[cfg(test)]
mod tests;