| 686 | /// Comprehensive cache statistics |
| 687 | #[derive(Debug, Clone)] |
| 688 | pub struct CacheManagerStats { |
| 689 | pub global: GlobalCacheStats, |
| 690 | pub result_cache: ResultCacheStats, |
| 691 | pub plan_cache: PlanCacheStats, |
| 692 | pub subquery_cache: Option<SubqueryCacheStats>, |
| 693 | pub efficiency: CacheEfficiencyMetrics, |
| 694 | pub config: CacheConfig, |
| 695 | pub graph_version: u64, |
| 696 | pub schema_version: u64, |
| 697 | } |
| 698 | |
| 699 | /// Cache health assessment |
| 700 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected