Crates.io | function_cache |
lib.rs | function_cache |
version | 0.1.0 |
source | src |
created_at | 2021-07-01 16:28:10.870315 |
updated_at | 2021-07-01 16:28:10.870315 |
description | A type that automatically caches the result of a function. |
homepage | https://github.com/MattBolitho/function_cache |
repository | https://github.com/MattBolitho/function_cache |
max_upload_size | |
id | 417509 |
size | 6,638 |
function_cache
is a simple generic wrapper around a function that caches results for a given input to a hash map.
It is based on the example from chapter 13.1 of the Rust book and serves as a small example for me to better understand the Cargo package ecosystem!
To install, simple add the function_cache
crate your Cargo.toml
file:
[dependencies]
function_cache = "0.1.0"
CachedFunction
instances can be created with the new
static method, which takes a closure.
The underlying value can be accessed with the value(arg)
method.
let mut cached_function = CachedFunction::new(|x: i32| {
thread::sleep(Duration::from_secs(5));
x
});
let not_cached = cached_function.value(2); // returns 2, after 5 seconds
let cached = cached_function.value(2); // returns 2, but much quicker!
Distributed under the MIT License. See LICENSE.md
for more information.