hydracache 0.41.0

User-facing HydraCache runtime crate.
Documentation
1
2
3
4
5
6
7
8
9
use hydracache::{cacheable_loader, HydraCache};

fn main() {
    let cache = HydraCache::local().build();
    let _future = cacheable_loader!(
        cache = cache,
        key = "value:1",
    );
}