1 unstable release

Uses old Rust 2015

0.23.3 Jan 28, 2024

#1966 in Database interfaces

Download history 1/week @ 2024-01-23 6/week @ 2024-02-13 10/week @ 2024-02-20 51/week @ 2024-02-27 50/week @ 2024-03-05 56/week @ 2024-03-12 56/week @ 2024-03-19 51/week @ 2024-03-26 45/week @ 2024-04-02

227 downloads per month
Used in r2d2_redis_cluster2

MIT license

31KB
635 lines

MIT licensed

This is a Rust implementation for Redis cluster library.

Documentation is available at here.

This library extends redis-rs library to be able to use cluster. Client impletemts traits of ConnectionLike and Commands. So you can use redis-rs's access methods. If you want more information, read document of redis-rs.

Note that this library is currently not have features of Pubsub.

Example

extern crate redis_cluster_rs;

use redis_cluster_rs::{Client, Commands};

fn main() {
    let nodes = vec!["redis://127.0.0.1:6379/", "redis://127.0.0.1:6378/", "redis://127.0.0.1:6377/"];
    let client = Client::open(nodes).unwrap();
    let mut connection = client.get_connection().unwrap();

    let _: () = connection.set("test", "test_data").unwrap();
    let res: String = connection.get("test").unwrap();

    assert_eq!(res, "test_data");
}

Pipelining

extern crate redis_cluster_rs;

use redis_cluster_rs::{Client, PipelineCommands, pipe};

fn main() {
    let nodes = vec!["redis://127.0.0.1:6379/", "redis://127.0.0.1:6378/", "redis://127.0.0.1:6377/"];
    let client = Client::open(nodes).unwrap();
    let mut connection = client.get_connection().unwrap();

    let key = "test";

    let _: () = pipe()
        .rpush(key, "123").ignore()
        .ltrim(key, -10, -1).ignore()
        .expire(key, 60).ignore()
        .query(&mut connection).unwrap();
}

Dependencies

~4MB
~104K SLoC