grafeo-core 0.5.34

Core graph models, indexes, and execution primitives for Grafeo
Documentation
1
2
3
4
5
6
7
8
9
//! Caching utilities for Grafeo.
//!
//! This module provides cache implementations optimized for graph database workloads:
//!
//! - [`SecondChanceLru`] - LRU cache with lock-free access marking

mod second_chance;

pub use second_chance::SecondChanceLru;