a3s_box_runtime/pool/mod.rs
1//! Warm VM pool for cold start optimization.
2//!
3//! Pre-boots MicroVMs so that `acquire()` returns an already-ready VM
4//! instead of waiting for the full boot sequence.
5
6pub mod scaler;
7pub mod warm_pool;
8
9pub use scaler::{PoolScaler, ScaleDecision};
10pub use warm_pool::{PoolStats, WarmPool};