//! Caching abstractions with multiple backend implementations.
//!
//! Provides in-memory caching by default, with optional Redis support
//! via the `cache-redis` feature.
pub use CacheConfig;
pub use InMemoryCache;
pub use NoOpCache;
pub use RedisCache;