| 356 | /// Cache efficiency metrics for monitoring |
| 357 | #[derive(Debug, Clone)] |
| 358 | pub struct CacheEfficiencyMetrics { |
| 359 | pub hit_rate: f64, |
| 360 | pub memory_utilization: f64, |
| 361 | pub average_entry_usage: f64, |
| 362 | pub eviction_rate: f64, |
| 363 | pub compilation_time_saved_ms: u64, |
| 364 | } |
| 365 | |
| 366 | /// Helper to create plan cache key from query and context |
| 367 | pub fn create_plan_cache_key( |
nothing calls this directly
no outgoing calls
no test coverage detected