ayun-redis 0.24.0

The RUST Framework for Web Rustceans.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod config;
pub mod error;
pub mod support;

pub type RedisResult<T, E = error::Error> = Result<T, E>;

#[derive(Clone)]
pub struct Redis {
    inner: bb8_redis::bb8::Pool<bb8_redis::RedisConnectionManager>,
    config: config::Redis,
}

// re-export
pub use ayun_core::*;