redis_pool 0.10.0

Library to Provide a redis client and cluster client pools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(dead_code)]
#![doc = include_str!("../README.md")]

pub mod connection;
pub mod errors;
pub mod factory;
pub mod pool;

pub use pool::RedisPool;
pub use pool::SingleRedisPool;

#[cfg(feature = "cluster")]
pub mod cluster;

#[cfg(feature = "cluster")]
pub use cluster::ClusterRedisPool;