d-engine 0.2.3

Lightweight Raft consensus engine - recommended entry point for most users
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # Client Guide
//!
//! This module contains documentation and guides for client developers using D-Engine.
//!
//! ## Available Guides
//!
//! - [Read Consistency](read_consistency) - Understanding and configuring read consistency
//!   policies
//! - [Error Handling](error_handling) - Error categories and retry strategies

pub mod read_consistency {
    #![doc = include_str!("read-consistency.md")]
}

pub mod error_handling {
    #![doc = include_str!("error-handling.md")]
}