1 2 3 4 5 6 7 8 9 10
#[hydracache::cacheable( cache = cache, key_segments = [], ttl_secs = 60 )] async fn load_value(cache: &hydracache::HydraCache) -> Result<u64, std::io::Error> { Ok(7) } fn main() {}