pub type PendingRdb = Arc<RwLock<HashMap<String, Vec<u8>>>>;Expand description
Snapshot RDB payloads staged for in-flight restores, keyed by Pod
name. The server’s internal endpoint serves bytes from here; the
restored Pod’s container fetches them at startup. Shared (cloneable
Arc) so the server route and the runtime see the same map.
Aliased Type§
pub struct PendingRdb { /* private fields */ }