dynomite-engine 0.0.2

Embeddable Dynamo-style distributed replication engine: token-ring partitioning, gossip cluster, hinted handoff, anti-entropy, RediSearch FT.* surface.
Documentation
1
2
3
4
5
6
7
8
9
//! Core engine primitives: types, settings, logging, signals, queues,
//! and the task scheduler used by the rest of the engine.

pub mod log;
pub mod ring_queue;
pub mod setting;
pub mod signal;
pub mod task;
pub mod types;