atomr-persistence-redis 0.9.2

Redis journal and snapshot store for atomr — sorted-set journal, hash snapshots, transactional batches.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! atomr-persistence-redis.
//!
//! Stores each persistence-id's journal as a sorted set keyed by sequence
//! number and each snapshot stream as a secondary sorted set keyed the same
//! way. Writes use MULTI/EXEC so a batch lands atomically.

mod codec;
mod config;
mod journal;
mod snapshot;

pub use codec::{StoredRepr, StoredSnapshot};
pub use config::RedisConfig;
pub use journal::RedisJournal;
pub use snapshot::RedisSnapshotStore;