dynomite-engine 1.3.0

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.
//! * [`memcache`] - the Memcached text-protocol parser, helpers,
//!   and repair surface.
//! * [`redis`] - the RESP parser, helpers, and repair
//!   plumbing.

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