wb-cache 0.1.0

Your L1 in-app write-behind cache for various kinds of backends.
Documentation
1
2
3
4
5
6
7
8
9
use wb_cache::test::simulation::sim_app::EcommerceApp;
use wb_cache::test::simulation::types::Result;

#[tokio::main]
async fn main() -> Result<()> {
    EcommerceApp::run().await.inspect_err(|err| {
        err.report_with_backtrace(format!("Application errored out: {err}"));
    })
}