1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Multi-tier caching for LLM Config Manager
//!
//! This module provides a two-tier caching system:
//! - L1 Cache: In-memory cache for ultra-fast access (LRU eviction)
//! - L2 Cache: Persistent cache for warm restarts
//!
//! ## Performance Characteristics
//! - L1 Cache: <1μs latency
//! - L2 Cache: <1ms latency
//! - Cache miss: 5-10ms (disk read)
pub use L1Cache;
pub use L2Cache;
pub use CacheManager;
use Error;
pub type Result<T> = Result;