hitbox 0.2.4

Asynchronous caching framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Finite State Machine for cache orchestration.
//!
//! Coordinates the entire cache lifecycle: checking predicates, looking up cache,
//! calling upstream on miss, applying stale policies, and updating cache with responses.

mod future;
mod states;
pub mod transitions;

pub use future::CacheFuture;
pub use states::{PollCacheFuture, State, UpdateCache};