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

Method find_boolean_subquery_matches

graphlite/src/cache/cache_manager.rs:407–416  ·  view source on GitHub ↗

Find cached boolean results for EXISTS/NOT EXISTS optimization

(
        &self,
        subquery_hash: u64,
    )

Source from the content-addressed store, hash-verified

405
406 /// Find cached boolean results for EXISTS/NOT EXISTS optimization
407 pub fn find_boolean_subquery_matches(
408 &self,
409 subquery_hash: u64,
410 ) -> Vec<(SubqueryCacheKey, bool)> {
411 if !self.config.enabled {
412 return vec![];
413 }
414
415 self.subquery_cache.find_boolean_matches(subquery_hash)
416 }
417
418 /// Invalidate caches when graph data changes
419 pub fn invalidate_on_data_change(&self, table: Option<String>, affected_rows: u64) {

Callers

nothing calls this directly

Calls 1

find_boolean_matchesMethod · 0.80

Tested by

no test coverage detected