Get detailed cache information
(&self)
| 372 | |
| 373 | /// Get detailed cache information |
| 374 | pub fn get_cache_info(&self) -> Vec<(String, String)> { |
| 375 | let caches = self.managed_caches.read(); |
| 376 | caches |
| 377 | .iter() |
| 378 | .map(|(name, cache)| (name.clone(), cache.stats_summary())) |
| 379 | .collect() |
| 380 | } |
| 381 | |
| 382 | /// Force eviction across all caches |
| 383 | pub fn force_eviction(&self, percentage: f32) -> usize { |