cached 3.1.1

Generic cache implementations and simplified function memoization
Documentation
1
2
3
4
5
6
7
8
9
use cached::macros::cached;

// `cache_prefix_block` sets the Redis key prefix on the concurrent Redis store.
#[cached(cache_prefix_block = "{ \"my-prefix\" }")]
fn my_fn(x: u32) -> u32 {
    x * 2
}

fn main() {}