cobble 0.1.0

A flexible embedded key-value storage engine for distributed systems as well as single-node applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod config;

pub use config::CoordinatorConfig;

mod file;
mod node;

#[allow(unused_imports)]
pub(crate) use crate::paths::global_snapshot_current_path;
#[allow(unused_imports)]
pub use node::{DbCoordinator, GlobalSnapshotManifest, ShardSnapshotInput, ShardSnapshotRef};