bss_oss_cache/
lib.rs

1//! Redis Caching Layer
2//!
3//! Provides a unified caching interface with Redis backend
4//! Supports TTL, invalidation, and cache warming
5
6pub mod client;
7pub mod error;
8
9pub use client::CacheClient;
10pub use error::CacheError;