hydracache 0.54.0

User-facing HydraCache runtime crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[hydracache::cacheable(
    cache = cache,
    key_segments = ["value", id],
    key_segments = ["duplicate", id],
    ttl_secs = 60
)]
async fn load_value(cache: &hydracache::HydraCache, id: u64) -> Result<u64, std::io::Error> {
    Ok(id)
}

fn main() {}