//! Cache implementations for the Soma runtime.
//!
//! - [`MemoryCache`] — in-memory LRU with byte-level eviction
//! - [`LocalCache`] — filesystem-backed with sharded directories
//! - [`TieredCache`] — multi-level (memory → local) with auto-promotion
//! - [`FsActionStore`] — persistent two-table store (action records + CAS)
pub use FsActionStore;
pub use LocalCache;
pub use MemoryCache;
pub use TieredCache;