#hash-map #hash-set #delay-queue #collection #delay

delay_map

HashMap collections whose entries expire after a given time

7 unstable releases

new 0.4.1 Mar 17, 2025
0.4.0 Jul 11, 2024
0.3.0 Mar 7, 2023
0.2.0 Feb 6, 2023
0.1.0 Jan 31, 2022

#206 in Data structures

Download history 12048/week @ 2024-11-30 12696/week @ 2024-12-07 9725/week @ 2024-12-14 7596/week @ 2024-12-21 7019/week @ 2024-12-28 14968/week @ 2025-01-04 13646/week @ 2025-01-11 12377/week @ 2025-01-18 13667/week @ 2025-01-25 16104/week @ 2025-02-01 17051/week @ 2025-02-08 13119/week @ 2025-02-15 15804/week @ 2025-02-22 12883/week @ 2025-03-01 15020/week @ 2025-03-08 15763/week @ 2025-03-15

61,446 downloads per month
Used in 8 crates (2 directly)

Apache-2.0

21KB
334 lines

delay_map

Build Status Doc Status Crates Status

Documentation at docs.rs

Overview

This crate contains two data structures, HashSetDelay and HashMapDelay. These behave like the standard library HashSet and HashMaps with the added feature that entries inserted into the mappings expire after a fixed period of time.

Usage

Creating a map

    use delay_map::HashMapDelay;
    use futures::prelude::*;

    // Set a default timeout for entries
    let mut delay_map = HashMapDelay::new(std::time::Duration::from_secs(1));


    tokio_test::block_on(async {

    delay_map.insert(1, "entry_1");
    delay_map.insert(2, "entry_2");
    
    if let Some(Ok((key, value))) = delay_map.next().await {
        println!("Entry 1: {}, {}", key, value);  
    }

    if let Some(Ok((key, value))) = delay_map.next().await {
        println!("Entry 2: {}, {}", key,value);  
    }
    });

Dependencies

~3–9MB
~70K SLoC