#redis #distributed-lock #redlock #distributed-systems

bin+lib redsync

A Rust implementation of Redlock for distributed locks with Redis

5 releases (2 stable)

1.0.1 Apr 18, 2023
1.0.0 Mar 1, 2021
0.1.2 Mar 1, 2021
0.1.1 Mar 1, 2021
0.1.0 Mar 1, 2021

#338 in Concurrency

Download history 60/week @ 2023-12-13 32/week @ 2023-12-20 13/week @ 2023-12-27 37/week @ 2024-01-03 32/week @ 2024-01-10 49/week @ 2024-01-17 74/week @ 2024-01-24 93/week @ 2024-01-31 39/week @ 2024-02-07 72/week @ 2024-02-14 122/week @ 2024-02-21 147/week @ 2024-02-28 63/week @ 2024-03-06 93/week @ 2024-03-13 84/week @ 2024-03-20 23/week @ 2024-03-27

287 downloads per month

MIT license

26KB
618 lines

crates.io docs.rs ci release

Redsync

A Rust implementation of Redlock for distributed locks with Redis.

Installation

Add the following line to your Cargo.toml file:

[dependencies]
redsync = "1.0.1"

Documentation

See https://docs.rs/redsync.

Quick Start

use std::error::Error;
use std::time::Duration;
use redsync::{RedisInstance, Redsync};

fn main() -> Result<(), Box<dyn Error>> {
  let dlm = Redsync::new(vec![
    RedisInstance::new("redis://127.0.0.1:6389")?,
    RedisInstance::new("redis://127.0.0.1:6399")?,
    RedisInstance::new("redis://127.0.0.1:6379")?,
  ]);

  let lock = dlm.lock("resource", Duration::from_secs(1))?;
  dlm.unlock(&lock)?;

  Ok(())
}

For more examples, see examples.

Dependencies

~4.5MB
~117K SLoC