cht
cht copied to clipboard
Lockfree resizeable concurrent hash table.
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| { ... })`?