2 unstable releases

0.5.0 Jul 12, 2021
0.4.2 Sep 5, 2021

#1783 in Data structures

Download history 140/week @ 2024-01-03 85/week @ 2024-01-10 746/week @ 2024-01-17 5428/week @ 2024-01-24 4428/week @ 2024-01-31 5536/week @ 2024-02-07 5107/week @ 2024-02-14 1556/week @ 2024-02-21 634/week @ 2024-02-28 782/week @ 2024-03-06 395/week @ 2024-03-13 416/week @ 2024-03-20 432/week @ 2024-03-27 654/week @ 2024-04-03 528/week @ 2024-04-10 707/week @ 2024-04-17

2,464 downloads per month

MIT/Apache

155KB
3K SLoC

moka-cht

GitHub Actions crates.io release docs dependency status license

moka-cht provides a lock-free 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. moka-cht also provides a segmented hash table using the same lock-free algorithm for increased concurrent write performance.

Usage

Add this to your Cargo.toml:

moka-cht = "0.5"

Then in your code:

use moka_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| unreachable!());
            }
        })
    })
    .collect();

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

License

moka-cht is distributed under either of

  • The MIT license
  • The Apache License (Version 2.0)

at your option.

See LICENSE-MIT and LICENSE-APACHE for details.

Credits

moka-cht is a fork for cht v0.4.1. We have created this fork to provide better integration with Moka cache via a non default Cargo feature.

cht is authored by Gregory Meyer and its v0.4.1 and earlier versions are licensed under the MIT license.

Dependencies

~275KB