Skip to main content

hashiverse_lib/client/caching/
mod.rs

1//! # Read-cache propagation helpers
2//!
3//! Client-side helpers that guide how cached post bundles spread across the DHT.
4//! One piece remembers how far caching has propagated so future walks skip
5//! already-cached peers; the other forwards freshly-written bundles to other
6//! servers in the background under tokens returned by the write.
7
8pub mod cache_radius_tracker;
9pub mod post_bundle_cache_uploader;