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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
//! Model caching and warming for reduced latency
//!
//! Provides LRU cache for model instances to reduce cold start latency and
//! improve throughput for repeated model usage.
//!
//! ## Features
//!
//! - **LRU Eviction**: Least Recently Used models are evicted when cache is full
//! - **Cache Warming**: Pre-load models on startup for zero cold starts
//! - **Metrics**: Track cache hits, misses, and evictions
//! - **Thread-Safe**: Concurrent access via Arc<RwLock>
//!
//! ## Example
//!
//! ```rust,ignore
//! use realizar::cache::ModelCache;
//!
//! let cache = ModelCache::new(10); // capacity: 10 models
//! cache.warm(&["model1", "model2"])?;
//!
//! let model = cache.get_or_load("model1", || load_model("model1"))?;
//! ```
use std::{
collections::HashMap,
sync::{Arc, RwLock},
};
use crate::{
error::RealizarError,
layers::{Model, ModelConfig},
tokenizer::BPETokenizer,
};
/// Type alias for model and tokenizer pair
pub type ModelPair = (Arc<Model>, Arc<BPETokenizer>);
/// Type alias for the internal cache storage
type CacheStorage = Arc<RwLock<HashMap<CacheKey, CacheEntry>>>;
/// Cache key for identifying cached models
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct CacheKey {
/// Model identifier (name, path, or config hash)
pub id: String,
}
impl CacheKey {
/// Create a new cache key
#[must_use]
pub fn new(id: String) -> Self {
Self { id }
}
/// Create cache key from model config
#[must_use]
pub fn from_config(config: &ModelConfig) -> Self {
// Simple hash based on config parameters
let id = format!(
"v{}_h{}_n{}_l{}_i{}",
config.vocab_size,
config.hidden_dim,
config.num_heads,
config.num_layers,
config.intermediate_dim
);
Self::new(id)
}
}
/// Cached model entry with metadata
#[derive(Clone)]
pub struct CacheEntry {
/// The cached model
pub model: Arc<Model>,
/// The tokenizer for this model
pub tokenizer: Arc<BPETokenizer>,
/// Access count for LRU tracking
access_count: u64,
/// Last access timestamp
last_access: std::time::Instant,
}
impl CacheEntry {
/// Create a new cache entry
#[must_use]
pub fn new(model: Model, tokenizer: BPETokenizer) -> Self {
Self {
model: Arc::new(model),
tokenizer: Arc::new(tokenizer),
access_count: 0,
last_access: std::time::Instant::now(),
}
}
/// Record an access to this entry
fn record_access(&mut self) {
self.access_count += 1;
self.last_access = std::time::Instant::now();
}
}
/// Cache metrics for monitoring
#[derive(Debug, Default, Clone)]
pub struct CacheMetrics {
/// Total cache hits
pub hits: u64,
/// Total cache misses
pub misses: u64,
/// Total evictions
pub evictions: u64,
/// Current cache size
pub size: usize,
}
impl CacheMetrics {
/// Calculate hit rate as percentage
#[must_use]
#[allow(clippy::cast_precision_loss)]
pub fn hit_rate(&self) -> f64 {
let total = self.hits + self.misses;
if total == 0 {
0.0
} else {
(self.hits as f64 / total as f64) * 100.0
}
}
}
/// LRU model cache
pub struct ModelCache {
/// Cached entries
cache: CacheStorage,
/// Maximum cache capacity
capacity: usize,
/// Cache metrics
metrics: Arc<RwLock<CacheMetrics>>,
}
impl ModelCache {
/// Create a new model cache with the specified capacity
///
/// # Arguments
///
/// * `capacity` - Maximum number of models to cache
#[must_use]
pub fn new(capacity: usize) -> Self {
Self {
cache: Arc::new(RwLock::new(HashMap::new())),
capacity,
metrics: Arc::new(RwLock::new(CacheMetrics::default())),
}
}
/// Get a model from cache or load it using the provided function
///
/// # Arguments
///
/// * `key` - Cache key for the model
/// * `loader` - Function to load the model if not cached
///
/// # Errors
///
/// Returns error if model loading fails
///
/// # Panics
///
/// Panics if the internal `RwLock` is poisoned (extremely rare, indicates thread panic while holding lock)
pub fn get_or_load<F>(&self, key: &CacheKey, loader: F) -> Result<ModelPair, RealizarError>
where
F: FnOnce() -> Result<(Model, BPETokenizer), RealizarError>,
{
// Try to get from cache first (read lock)
{
let mut cache = self
.cache
.write()
.expect("RwLock poisoned: thread panicked while holding cache write lock");
if let Some(entry) = cache.get_mut(key) {
entry.record_access();
let mut metrics = self
.metrics
.write()
.expect("RwLock poisoned: thread panicked while holding metrics write lock");
metrics.hits += 1;
return Ok((entry.model.clone(), entry.tokenizer.clone()));
}
}
// Cache miss - load the model
let (model, tokenizer) = loader()?;
let entry = CacheEntry::new(model, tokenizer);
// Insert into cache (write lock)
{
let mut cache = self
.cache
.write()
.expect("RwLock poisoned: thread panicked while holding cache write lock");
let mut metrics = self
.metrics
.write()
.expect("RwLock poisoned: thread panicked while holding metrics write lock");
metrics.misses += 1;
// Check if we need to evict
if cache.len() >= self.capacity && !cache.contains_key(key) {
Self::evict_lru(&mut cache, &mut metrics);
}
cache.insert(key.clone(), entry.clone());
metrics.size = cache.len();
}
Ok((entry.model, entry.tokenizer))
}
/// Evict the least recently used entry from the cache
fn evict_lru(cache: &mut HashMap<CacheKey, CacheEntry>, metrics: &mut CacheMetrics) {
if let Some((lru_key, _)) = cache
.iter()
.min_by_key(|(_, entry)| entry.last_access)
.map(|(k, e)| (k.clone(), e.clone()))
{
cache.remove(&lru_key);
metrics.evictions += 1;
}
}
/// Get current cache metrics
///
/// # Panics
///
/// Panics if the internal `RwLock` is poisoned
#[must_use]
pub fn metrics(&self) -> CacheMetrics {
self.metrics
.read()
.expect("RwLock poisoned: thread panicked while holding metrics read lock")
.clone()
}
/// Clear all cached models
///
/// # Panics
///
/// Panics if the internal `RwLock` is poisoned
pub fn clear(&self) {
let mut cache = self
.cache
.write()
.expect("RwLock poisoned: thread panicked while holding cache write lock");
cache.clear();
let mut metrics = self
.metrics
.write()
.expect("RwLock poisoned: thread panicked while holding metrics write lock");
metrics.size = 0;
}
/// Get the number of cached models
///
/// # Panics
///
/// Panics if the internal `RwLock` is poisoned
#[must_use]
pub fn len(&self) -> usize {
self.cache
.read()
.expect("RwLock poisoned: thread panicked while holding cache read lock")
.len()
}
/// Check if the cache is empty
///
/// # Panics
///
/// Panics if the internal `RwLock` is poisoned
#[must_use]
pub fn is_empty(&self) -> bool {
self.len() == 0
}
}
include!("cache_tests.rs");