sharedstate 1.1.1

Sync heavily read state across many servers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Synchronize deterministic state machines across a cluster.
//!
//! The crate is organized into focused layers: state management, protocol
//! framing, transport adapters, and cluster coordination.

pub mod cluster;
pub mod protocol;
pub mod service;
pub mod state;
pub mod transport;

mod utils;

pub use service::{SharedState, SharedStateConfig, SharedStateSettings};