multi_tier_cache/
lib.rs

1//! Multi-Tier Cache
2//!
3//! A high-performance, production-ready multi-tier caching library for Rust featuring:
4//! - **L1 Cache**: In-memory caching with Moka (sub-millisecond latency)
5//! - **L2 Cache**: Distributed caching with Redis (persistent storage)
6//! - **Cache Stampede Protection**: DashMap + Mutex request coalescing
7//! - **Redis Streams**: Built-in support for event streaming
8//! - **Automatic L2-to-L1 Promotion**: Intelligent cache tier promotion
9//! - **Comprehensive Statistics**: Hit rates, promotions, in-flight tracking
10//!
11//! # Quick Start
12//!
13//! ```rust,no_run
14//! use multi_tier_cache::{CacheSystem, CacheStrategy};
15//!
16//! #[tokio::main]
17//! async fn main() -> anyhow::Result<()> {
18//!     // Initialize cache system
19//!     let cache = CacheSystem::new().await?;
20//!
21//!     // Store data with cache strategy
22//!     let data = serde_json::json!({"user": "alice", "score": 100});
23//!     cache.cache_manager()
24//!         .set_with_strategy("user:1", data, CacheStrategy::ShortTerm)
25//!         .await?;
26//!
27//!     // Retrieve data (L1 first, then L2 fallback)
28//!     if let Some(cached) = cache.cache_manager().get("user:1").await? {
29//!         println!("Cached data: {}", cached);
30//!     }
31//!
32//!     // Get statistics
33//!     let stats = cache.cache_manager().get_stats();
34//!     println!("Hit rate: {:.2}%", stats.hit_rate);
35//!
36//!     Ok(())
37//! }
38//! ```
39//!
40//! # Features
41//!
42//! - **Multi-Tier Architecture**: Combines fast in-memory (L1) with persistent distributed (L2) caching
43//! - **Cache Stampede Protection**: Prevents duplicate computations during cache misses
44//! - **Redis Streams**: Publish/subscribe with automatic trimming
45//! - **Zero-Config**: Sensible defaults, works out of the box
46//! - **Production-Proven**: Battle-tested at 16,829+ RPS with 5.2ms latency
47//!
48//! # Architecture
49//!
50//! ```text
51//! Request → L1 Cache (Moka) → L2 Cache (Redis) → Compute/Fetch
52//!           ↓ Hit (90%)       ↓ Hit (75%)        ↓ Miss (5%)
53//!           Return            Promote to L1       Store in L1+L2
54//! ```
55
56use std::sync::Arc;
57use anyhow::Result;
58
59pub mod l1_cache;
60pub mod l2_cache;
61pub mod cache_manager;
62pub mod traits;
63pub mod builder;
64
65pub use l1_cache::L1Cache;
66pub use l2_cache::L2Cache;
67pub use cache_manager::{CacheManager, CacheStrategy, CacheManagerStats};
68pub use traits::{CacheBackend, L2CacheBackend, StreamingBackend};
69pub use builder::CacheSystemBuilder;
70
71// Re-export async_trait for user convenience
72pub use async_trait::async_trait;
73
74/// Main entry point for the Multi-Tier Cache system
75///
76/// Provides unified access to L1 (Moka) and L2 (Redis) caches with
77/// automatic failover, promotion, and stampede protection.
78///
79/// # Example
80///
81/// ```rust,no_run
82/// use multi_tier_cache::CacheSystem;
83///
84/// #[tokio::main]
85/// async fn main() -> anyhow::Result<()> {
86///     let cache = CacheSystem::new().await?;
87///
88///     // Use cache_manager for all operations
89///     let manager = cache.cache_manager();
90///
91///     Ok(())
92/// }
93/// ```
94#[derive(Clone)]
95pub struct CacheSystem {
96    /// Unified cache manager (primary interface)
97    pub cache_manager: Arc<CacheManager>,
98    /// L1 Cache (in-memory, Moka)
99    pub l1_cache: Arc<L1Cache>,
100    /// L2 Cache (distributed, Redis)
101    pub l2_cache: Arc<L2Cache>,
102}
103
104impl CacheSystem {
105    /// Create new cache system with default configuration
106    ///
107    /// # Configuration
108    ///
109    /// Redis connection is configured via `REDIS_URL` environment variable.
110    /// Default: `redis://127.0.0.1:6379`
111    ///
112    /// # Example
113    ///
114    /// ```rust,no_run
115    /// use multi_tier_cache::CacheSystem;
116    ///
117    /// #[tokio::main]
118    /// async fn main() -> anyhow::Result<()> {
119    ///     // Set environment variable (optional)
120    ///     std::env::set_var("REDIS_URL", "redis://localhost:6379");
121    ///
122    ///     let cache = CacheSystem::new().await?;
123    ///     Ok(())
124    /// }
125    /// ```
126    pub async fn new() -> Result<Self> {
127        println!("🏗️ Initializing Multi-Tier Cache System...");
128
129        // Initialize L1 cache (Moka)
130        let l1_cache = Arc::new(L1Cache::new().await?);
131
132        // Initialize L2 cache (Redis)
133        let l2_cache = Arc::new(L2Cache::new().await?);
134
135        // Initialize cache manager
136        let cache_manager = Arc::new(CacheManager::new(l1_cache.clone(), l2_cache.clone()).await?);
137
138        println!("✅ Multi-Tier Cache System initialized successfully");
139
140        Ok(Self {
141            cache_manager,
142            l1_cache,
143            l2_cache,
144        })
145    }
146
147    /// Create cache system with custom Redis URL
148    ///
149    /// # Arguments
150    ///
151    /// * `redis_url` - Redis connection string (e.g., "redis://localhost:6379")
152    ///
153    /// # Example
154    ///
155    /// ```rust,no_run
156    /// use multi_tier_cache::CacheSystem;
157    ///
158    /// #[tokio::main]
159    /// async fn main() -> anyhow::Result<()> {
160    ///     let cache = CacheSystem::with_redis_url("redis://custom:6379").await?;
161    ///     Ok(())
162    /// }
163    /// ```
164    pub async fn with_redis_url(redis_url: &str) -> Result<Self> {
165        // Temporarily set environment variable for L2Cache initialization
166        std::env::set_var("REDIS_URL", redis_url);
167        Self::new().await
168    }
169
170    /// Perform health check on all cache tiers
171    ///
172    /// Returns `true` if at least L1 is operational.
173    /// L2 failure is tolerated (graceful degradation).
174    ///
175    /// # Example
176    ///
177    /// ```rust,no_run
178    /// use multi_tier_cache::CacheSystem;
179    ///
180    /// #[tokio::main]
181    /// async fn main() -> anyhow::Result<()> {
182    ///     let cache = CacheSystem::new().await?;
183    ///
184    ///     if cache.health_check().await {
185    ///         println!("Cache system healthy");
186    ///     }
187    ///
188    ///     Ok(())
189    /// }
190    /// ```
191    pub async fn health_check(&self) -> bool {
192        let l1_ok = self.l1_cache.health_check().await;
193        let l2_ok = self.l2_cache.health_check().await;
194
195        if l1_ok && l2_ok {
196            println!("  ✅ Multi-Tier Cache health check passed");
197            true
198        } else {
199            println!("  ⚠️ Multi-Tier Cache health check - L1: {}, L2: {}", l1_ok, l2_ok);
200            l1_ok // At minimum, L1 should work
201        }
202    }
203
204    /// Get reference to cache manager (primary interface)
205    ///
206    /// Use this for all cache operations: get, set, streams, etc.
207    pub fn cache_manager(&self) -> &Arc<CacheManager> {
208        &self.cache_manager
209    }
210}