rollblock 0.4.1

A super-fast, block-oriented and rollbackable key-value store.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Runtime protocols: orchestration, durability and metrics collection.

pub mod metrics;
pub mod orchestrator;

pub mod prelude {
    pub use super::metrics::{HealthState, HealthStatus, MetricsSnapshot, StoreMetrics};
    pub use super::orchestrator::{
        BlockOrchestrator, DefaultBlockOrchestrator, DurabilityMode, PersistenceSettings,
    };
}