rust_redlock 0.4.0

A Rust Redlock implementation for distributed, highly-available redis locks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! A rust redlock implementation for distributed, highly-available redis locks.

#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate quick_error;
extern crate redis;
extern crate rand;

pub use self::errors::RedlockResult;
pub use self::redlock::{Lock, Redlock, Config};

mod errors;
mod scripts;
mod redlock;
mod util;