somatize-runtime 0.3.1

Execution engine for the Soma computational graph runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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

pub mod local;
pub mod memory;
pub mod tiered;

pub use local::LocalCache;
pub use memory::MemoryCache;
pub use tiered::TieredCache;