somatize-runtime 0.4.0

Execution engine for the Soma computational graph runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 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 mod fs_store;
pub mod gc;
pub mod local;
pub mod memory;
pub mod tiered;

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