ROADMAP v0.5.0 - Cache entry dependency tracking for automatic invalidation
| 130 | #[derive(Debug, Clone)] |
| 131 | #[allow(dead_code)] // ROADMAP v0.5.0 - Cache entry dependency tracking for automatic invalidation |
| 132 | pub struct CacheDependency { |
| 133 | pub entry_key: String, |
| 134 | pub depends_on: HashSet<String>, // Tables, schemas, etc. |
| 135 | pub dependency_type: DependencyType, |
| 136 | pub last_validated: Instant, |
| 137 | } |
| 138 | |
| 139 | #[derive(Debug, Clone)] |
| 140 | #[allow(dead_code)] // ROADMAP v0.5.0 - Dependency type classification for invalidation routing |
nothing calls this directly
no outgoing calls
no test coverage detected