simple-cache-rs

A simple im-mem cache for Rust

Docs Apache-2 licensed CI

A simple rust implementation of HashMap with expiration control.

Example

``` use simplecachers::SimpleCache;

let mut cache: SimpleCache = SimpleCache::new();

cache.get(&1); ```