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