Crates.io | persistentcache |
lib.rs | persistentcache |
version | 0.1.6 |
source | src |
created_at | 2017-11-24 16:36:33.847816 |
updated_at | 2018-06-02 08:15:24.073269 |
description | Macros for persistently caching function calls using files or Redis |
homepage | https://github.com/stefan-k/persistentcache-rs |
repository | https://github.com/stefan-k/persistentcache-rs |
max_upload_size | |
id | 40407 |
size | 48,586 |
persistentcache-rs implements the macros cache!
and cache_func!
and the procedural macro #[peristent_cache]
to cache function calls or entire functions.
The implemented storages are persistent and can be shared between processes.
Storages either store on disk (FileStorage
) or Redis (RedisStorage
).
The documentation and examples can be found here.
Here is an example using the #[peristent_cache]
procedural macro:
#![feature(proc_macro)]
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate persistentcache;
extern crate persistentcache_procmacro;
use persistentcache::*;
use persistentcache::storage::{FileStorage, RedisStorage};
use persistentcache_procmacro::persistent_cache;
// Either store it in a `FileStorage`...
#[persistent_cache]
#[params(FileStorage, "test_dir")]
fn add_two_file(a: u64) -> u64 {
println!("Calculating {} + 2...", a);
a + 2
}
// ... or in a `RedisStorage`
#[persistent_cache]
#[params(RedisStorage, "redis://127.0.0.1")]
fn add_two_redis(a: u64) -> u64 {
println!("Calculating {} + 2...", a);
a + 2
}
fn main() {
// Function is called and will print "Calculating 2 + 2..." and "4"
println!("{}", add_two_file(2));
// Value will be cached from Redis, will only print "4"
println!("{}", add_two_file(2));
// Function is called and will print "Calculating 3 + 2..." and "5"
println!("{}", add_two_redis(3));
// Value will be cached from Redis, will only print "5"
println!("{}", add_two_redis(3));
}
This will print:
Calculating 2 + 2...
4
4
Calculating 3 + 2...
5
5
This crate is inspired by owls-cache and its primary goal is to teach myself Rust.
While working on it, I realised that a similar crate already exists: cached-rs.
I've borrowed a couple of ideas from there.
I suggest you have a look at the cached-rs crate, too.
Unfortunately it lacks the 'persistent' part and the caches cannot be shared between processes/threads, but it should be fairly easy to extend it.
Furthermore, the excellent accel has been very helpful. I shamelessly copied parts of it for the persistentcache_procmacro
crate.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.