dynomite-engine 0.0.1

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
10
11
12
//! I/O substrate: chunked buffer pool, fixed-size SPSC ring, and a
//! transport abstraction layered on tokio.
//!
//! The submodules replace the C engine's `dyn_mbuf`, `dyn_cbuf`, and
//! the per-platform `src/event/` reactor. The reactor module defines a
//! [`Transport`](reactor::Transport) trait so that downstream stages can
//! plug in alternative wire transports (TCP today, QUIC in Stage 9)
//! without changing the connection state machine.

pub mod cbuf;
pub mod mbuf;
pub mod reactor;