8 releases (4 breaking)

0.5.0 Dec 13, 2021
0.4.1 Mar 11, 2020
0.3.0 Mar 5, 2020
0.2.0 Feb 28, 2020
0.1.2 Jun 26, 2019

#689 in Concurrency

Download history 55/week @ 2024-11-13 49/week @ 2024-11-20 9/week @ 2024-11-27 12/week @ 2024-12-04 33/week @ 2024-12-11 17/week @ 2024-12-18 6/week @ 2025-01-01 9/week @ 2025-01-08 21/week @ 2025-01-15 7/week @ 2025-01-22 15/week @ 2025-01-29 147/week @ 2025-02-05 18/week @ 2025-02-12 25/week @ 2025-02-19 22/week @ 2025-02-26

215 downloads per month

AGPL-3.0-or-later

115KB
2K SLoC

cht

crates.io docs.rs Travis CI

cht provides a lockfree hash table that supports fully concurrent lookups, insertions, modifications, and deletions. The table may also be concurrently resized to allow more elements to be inserted. cht also provides a segmented hash table using the same lockfree algorithm for increased concurrent write performance.

Usage

In your Cargo.toml:

cht = "0.5"

Then in your code:

use cht::HashMap;

use std::{sync::Arc, thread};

let map = Arc::new(HashMap::new());

let threads: Vec<_> = (0..16)
    .map(|i| {
        let map = map.clone();

        thread::spawn(move || {
            const NUM_INSERTIONS: usize = 64;

            for j in (i * NUM_INSERTIONS)..((i + 1) * NUM_INSERTIONS) {
                map.insert_and(j, j, |prev| assert_eq!(prev, None));
            }
        })
    })
    .collect();

let _: Vec<_> = threads.into_iter().map(|t| t.join()).collect();

License

cht is licensed under the GNU Affero General Public License v3.0 or later.

Dependencies

~255KB