3 releases

0.1.2 Aug 13, 2024
0.1.1 May 8, 2024
0.1.0 Apr 14, 2024

#1013 in Data structures

Download history 27/week @ 2024-07-07 1/week @ 2024-07-14 10/week @ 2024-07-28 1/week @ 2024-08-04 157/week @ 2024-08-11 49/week @ 2024-08-18 140/week @ 2024-08-25 203/week @ 2024-09-01 542/week @ 2024-09-08 211/week @ 2024-09-15 125/week @ 2024-09-22 101/week @ 2024-09-29 210/week @ 2024-10-06 378/week @ 2024-10-13 86/week @ 2024-10-20

800 downloads per month
Used in syd

Apache-2.0 OR MIT

14KB
305 lines

expiringmap

A rust library implementing a TTL map.

use std::time::Duration;
use expiringmap::ExpiringMap;

fn main() {
    let mut map = ExpiringMap::new();
    map.insert("key", "value", Duration::from_millis(50));
    std::thread::sleep(Duration::from_millis(60));
    assert!(map.get(&"key").is_none());
}

lib.rs:

ExpiringMap is a wrapper around HashMap that allows the specification of TTLs on entries. It does not support iteration.

use std::time::Duration;
use expiringmap::ExpiringMap;
let mut map = ExpiringMap::new();
map.insert("key", "value", Duration::from_millis(50));
std::thread::sleep(Duration::from_millis(60));
assert!(map.get(&"key").is_none());

No runtime deps