foxtive 0.25.6

Foxtive Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "cache-filesystem")]
mod filesystem_driver;
#[cfg(feature = "cache-in-memory")]
mod in_memory_driver;
#[cfg(feature = "cache-redis")]
mod redis_driver;

#[cfg(feature = "cache-filesystem")]
pub use filesystem_driver::FilesystemCacheDriver;

#[cfg(feature = "cache-redis")]
pub use redis_driver::RedisCacheDriver;

#[cfg(feature = "cache-in-memory")]
pub use in_memory_driver::InMemoryDriver;