Struct r2d2_redis::RedisConnectionManager[][src]

pub struct RedisConnectionManager { /* fields omitted */ }

An r2d2::ConnectionManager for redis::Clients.

Example

extern crate r2d2_redis;

use std::ops::Deref;
use std::thread;

use r2d2_redis::{r2d2, redis, RedisConnectionManager};

fn main() {
    let manager = RedisConnectionManager::new("redis://localhost").unwrap();
    let pool = r2d2::Pool::builder()
        .build(manager)
        .unwrap();

    let mut handles = vec![];

    for _i in 0..10i32 {
        let pool = pool.clone();
        handles.push(thread::spawn(move || {
            let conn = pool.get().unwrap();
            let reply = redis::cmd("PING").query::<String>(conn.deref()).unwrap();
            // Alternatively, without deref():
            // let reply = redis::cmd("PING").query::<String>(&*conn).unwrap();
            assert_eq!("PONG", reply);
        }));
    }

    for h in handles {
        h.join().unwrap();
    }
}

Methods

impl RedisConnectionManager
[src]

Creates a new RedisConnectionManager.

See redis::Client::open for a description of the parameter types.

Trait Implementations

impl Debug for RedisConnectionManager
[src]

Formats the value using the given formatter. Read more

impl ManageConnection for RedisConnectionManager
[src]

The connection type this manager deals with.

The error type returned by Connections.

Attempts to create a new connection.

Determines if the connection is still connected to the database. Read more

Quickly determines if the connection is no longer usable. Read more

Auto Trait Implementations