somatize_runtime/cache/mod.rs
1//! Cache implementations for the Soma runtime.
2//!
3//! - [`MemoryCache`] — in-memory LRU with byte-level eviction
4//! - [`LocalCache`] — filesystem-backed with sharded directories
5//! - [`TieredCache`] — multi-level (memory → local) with auto-promotion
6
7pub mod local;
8pub mod memory;
9pub mod tiered;
10
11pub use local::LocalCache;
12pub use memory::MemoryCache;
13pub use tiered::TieredCache;