| 90 | /// Cache hit information for analytics |
| 91 | #[derive(Debug, Clone)] |
| 92 | pub struct CacheHit { |
| 93 | pub key: QueryCacheKey, |
| 94 | pub hit_level: CacheLevel, |
| 95 | pub access_time: Instant, |
| 96 | pub saved_execution_time: Duration, |
| 97 | } |
| 98 | |
| 99 | /// LRU eviction tracker |
| 100 | #[derive(Debug)] |
nothing calls this directly
no outgoing calls
no test coverage detected