hydracache 0.24.0

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

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