Skip to main content

oxirs_graphrag/cache/
mod.rs

1//! Cache module for GraphRAG query results
2//!
3//! Provides a thread-safe LRU cache with TTL-based expiry.
4
5pub mod query_cache;
6
7pub use query_cache::{CacheEntry, CacheStats, QueryCache, QueryCacheConfig};