oxirs-graphrag 0.2.4

GraphRAG: Hybrid Vector + Graph Retrieval-Augmented Generation for OxiRS
Documentation
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};