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
10
11
12
13
//! Wire-protocol codecs for Dynomite's external surfaces.
//!
//! This module exposes:
//!
//! * [`dnode`] - the DNODE peer-to-peer codec (Stage 7).
//! * [`memcache`] - the Memcached text-protocol parser, helpers,
//!   and repair stubs (Stage 8).
//! * [`redis`] - the Redis (RESP) parser, helpers, and repair
//!   plumbing (Stage 8).

pub mod dnode;
pub mod memcache;
pub mod redis;