distributed-lock-redis 0.2.0

Redis backend for distributed locks with RedLock algorithm support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! RedLock algorithm implementation for distributed locking across multiple Redis servers.
//!
//! See https://redis.io/topics/distlock for the algorithm specification.

pub mod acquire;
pub mod extend;
pub mod helper;
pub mod release;
pub mod timeouts;

pub use helper::RedLockHelper;
pub use timeouts::RedLockTimeouts;