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

#575 in Concurrency

Download history 88/week @ 2024-07-24 74/week @ 2024-07-31 62/week @ 2024-08-07 65/week @ 2024-08-14 64/week @ 2024-08-21 72/week @ 2024-08-28 79/week @ 2024-09-04 66/week @ 2024-09-11 62/week @ 2024-09-18 34/week @ 2024-09-25 12/week @ 2024-10-02 45/week @ 2024-10-09 66/week @ 2024-10-16 55/week @ 2024-10-23 60/week @ 2024-10-30 51/week @ 2024-11-06

241 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