ferro-cache 0.2.5

Caching with tags for the Ferro framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Cache store implementations.

#[cfg(feature = "memory")]
mod memory;
#[cfg(feature = "memory")]
pub use memory::MemoryStore;

#[cfg(feature = "redis-backend")]
mod redis;
#[cfg(feature = "redis-backend")]
pub use redis::RedisStore;