18 releases

0.8.2 Nov 20, 2023
0.8.0 Jan 22, 2023
0.7.0 Jan 13, 2021
0.5.4 Nov 14, 2020
0.3.0 Nov 30, 2019

#2019 in Database interfaces

Download history 398/week @ 2024-12-25 1271/week @ 2025-01-01 2361/week @ 2025-01-08 1904/week @ 2025-01-15 2506/week @ 2025-01-22 2431/week @ 2025-01-29 2178/week @ 2025-02-05 1966/week @ 2025-02-12 2354/week @ 2025-02-19 3310/week @ 2025-02-26 2524/week @ 2025-03-05 1814/week @ 2025-03-12 1692/week @ 2025-03-19 1902/week @ 2025-03-26 2218/week @ 2025-04-02 2157/week @ 2025-04-09

8,440 downloads per month
Used in 9 crates (5 directly)

MIT/Apache

61KB
1K SLoC

mobc-redis

crates.io

Documentation

Example

use mobc::Pool;
use mobc_redis::redis;
use redis::AsyncCommands;
use mobc_redis::RedisConnectionManager;
use std::time::Instant;

const TEST_KEY: &'static str = "mobc::redis::test";

#[tokio::main]
async fn main() {
    let client = redis::Client::open("redis://127.0.0.1/").unwrap();
    let manager = RedisConnectionManager::new(client);
    let pool = Pool::builder().max_open(20).build(manager);

    let mut conn = pool.get().await.unwrap();
    let _: () = conn.set(TEST_KEY, "hello").await.unwrap();

    const MAX: usize = 5000;

    let now = Instant::now();
    let (tx, mut rx) = tokio::sync::mpsc::channel::<usize>(5000);
    for i in 0..MAX {
        let pool = pool.clone();
        let tx_c = tx.clone();
        tokio::spawn(async move {
            let mut conn = pool.get().await.unwrap();
            let s: String = conn.get(TEST_KEY).await.unwrap();
            assert_eq!(s.as_str(), "hello");
            tx_c.send(i).await.unwrap();
        });
    }
    for _ in 0..MAX {
        rx.recv().await.unwrap();
    }

    println!("cost: {:?}", now.elapsed());
}

Runtimes

You can use either tokio, or async-std as your async runtime.

The default is tokio-comp, but you can use async-std by setting it in the mobc-redis features.

mobc-redis = { version = "0.7", default-features = false, features = ["async-std-comp"] }

Dependencies

~9–21MB
~298K SLoC