cht icon indicating copy to clipboard operation
cht copied to clipboard

Lockfree resizeable concurrent hash table.

Results 3 cht issues
Sort by recently updated
recently updated
newest added

Parallel insertion workloads have some significant latency spikes when a rehashing into a new `BucketArray` is triggered. This is likely because rehashing will block all insertion threads when it happens,...

Currently there's no way to save the hashmap nor iterate through all key value pairs.

Thanks for the interesting crate. Is iteration possible? Probably in the form of internal iteration, i.e. `map.for_each(|key, value| { ... })`?