MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / CacheDependency

Class CacheDependency

graphlite/src/cache/invalidation.rs:132–137  ·  view source on GitHub ↗

ROADMAP v0.5.0 - Cache entry dependency tracking for automatic invalidation

Source from the content-addressed store, hash-verified

130#[derive(Debug, Clone)]
131#[allow(dead_code)] // ROADMAP v0.5.0 - Cache entry dependency tracking for automatic invalidation
132pub 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected