rok-cache 0.1.0

Cache façade for the rok ecosystem — Memory/Redis drivers, Cache::get/set/remember
Documentation
1
2
3
4
5
6
7
8
9
pub mod memory;

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

pub use memory::MemoryDriver;

#[cfg(feature = "redis")]
pub use redis::RedisDriver;