3 unstable releases

0.2.1 Feb 9, 2022
0.2.0 Feb 9, 2022
0.1.0 Feb 8, 2022

#945 in Concurrency

Apache-2.0

10KB
141 lines

This crate is inspired by dashmap. which is a concurrent hashmap.

But dashmap has some poor api design (In my opinion).

Whenever It need to do some operation, every time it compute the same hash key. which is cheap but redundant, and unnecessary locking and unlocking also has some extra overhead.

Moreover, Its very easy to get deadlock in dashmap.

So this crate is to resolve those problems, Also performance should be better then dashmap, as no code is faster then no code. It has less then 150 lines of code...

How it works ?

Instead of a giant rwlock on a hashmap. It use multiple hashmap for better performance.

Dependencies

~0–6MB