a3s_box_runtime/cache/mod.rs
1//! Cache module for cold start optimization.
2//!
3//! Provides two caching layers:
4//! - `LayerCache`: Content-addressed cache for extracted OCI layers
5//! - `RootfsCache`: Cache for fully-built rootfs directories
6
7pub mod layer_cache;
8pub mod rootfs_cache;
9
10pub use layer_cache::LayerCache;
11pub use rootfs_cache::RootfsCache;