d-engine-server 0.2.3

Production-ready Raft consensus engine server and runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// File-based state machine implementation.
///
/// Provides a simple file-backed storage backend for development and testing.
pub mod file;
pub use file::*;

/// RocksDB-based state machine implementation.
///
/// Production-grade storage backend using RocksDB for high-performance persistence.
#[cfg(feature = "rocksdb")]
pub mod rocksdb;

#[cfg(feature = "rocksdb")]
pub use rocksdb::*;