r-cache 0.1.0

r-cache is an in memory key value store. It is thread safe and values have expiry times
Documentation
1
2
3
4
5
6
7
8
9
10
11
# r-cache

r-cache is an in memory key value store. It is thread safe and values have expiry times.

### Example

```rust
let cache = Cache::new(chrono::Duration::minutes(1));
cache.set(KEY, VALUE).await;
let value = cache.get(KEY).await;
```