1//! Caching utilities for Grafeo. 2//! 3//! This module provides cache implementations optimized for graph database workloads: 4//! 5//! - [`SecondChanceLru`] - LRU cache with lock-free access marking 6 7mod second_chance; 8 9pub use second_chance::SecondChanceLru;