kalgan_cache 0.9.1

A wrapper for redis crate used by Kalgan Framework.
Documentation

kalgan-cache

A wrapper for redis crate used by Kalgan Framework.

Examples

use kalgan_cache::Cache;
let cache: Cache = Cache::new(env::var("REDIS_SERVER").unwrap().to_string());
cache.insert("key", "value");
cache.delete("key");
cache.exists("key");
let key: String = cache.get("key").unwrap();

Documentation

For further information please visit:

License

This crate is licensed under either of the following licenses: