faucet-state-redis 1.0.1

Redis-backed StateStore for faucet-stream incremental replication
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # faucet-state-redis
//!
//! Redis-backed [`StateStore`](faucet_core::state::StateStore) for faucet-stream
//! incremental replication bookmarks. Stores each entry as a single Redis
//! string under `{namespace}:{key}` containing a serialized JSON value.

pub mod store;

pub use store::RedisStateStore;