| 168 | /// Cache statistics for monitoring |
| 169 | #[derive(Debug, Clone)] |
| 170 | pub struct CatalogCacheStats { |
| 171 | pub schema_list_cached: bool, |
| 172 | pub graph_schemas_cached: usize, |
| 173 | pub last_schema_access: Option<Instant>, |
| 174 | pub last_graph_access: Option<Instant>, |
| 175 | } |
| 176 | |
| 177 | /// Unified user session that combines authentication and database session management |
| 178 | #[derive(Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected