60 stable releases (4 major)

5.5.3 Aug 29, 2023
5.5.0 Jul 11, 2023
5.4.0 Aug 30, 2022
5.3.4 May 28, 2022
1.2.0 Oct 15, 2019

#4 in Concurrency

Download history 300974/week @ 2023-12-23 532171/week @ 2023-12-30 704912/week @ 2024-01-06 695809/week @ 2024-01-13 714438/week @ 2024-01-20 710865/week @ 2024-01-27 740268/week @ 2024-02-03 737968/week @ 2024-02-10 734519/week @ 2024-02-17 816043/week @ 2024-02-24 767709/week @ 2024-03-02 796891/week @ 2024-03-09 788915/week @ 2024-03-16 775922/week @ 2024-03-23 842508/week @ 2024-03-30 702117/week @ 2024-04-06

3,237,397 downloads per month
Used in 3,392 crates (753 directly)

MIT license

130KB
3K SLoC

DashMap

Blazingly fast concurrent map in Rust.

DashMap is an implementation of a concurrent associative array/hashmap in Rust.

DashMap tries to implement an easy to use API similar to std::collections::HashMap with some slight changes to handle concurrency.

DashMap tries to be very simple to use and to be a direct replacement for RwLock<HashMap<K, V>>. To accomplish these goals, all methods take &self instead of modifying methods taking &mut self. This allows you to put a DashMap in an Arc<T> and share it between threads while still being able to modify it.

DashMap puts great effort into performance and aims to be as fast as possible. If you have any suggestions or tips do not hesitate to open an issue or a PR.

version

documentation

downloads

minimum rustc version

Cargo features

  • serde - Enables serde support.

  • raw-api - Enables the unstable raw-shard api.

  • rayon - Enables rayon support.

  • inline - Enables inline-more feature from the hashbrown crate. Can lead to better performance, but with the cost of longer compile-time.

  • arbitrary - Enables support for the arbitrary crate.

Contributing

DashMap gladly accepts contributions! Do not hesitate to open issues or PR's.

I will take a look as soon as I have time for it.

That said I do not get paid (yet) to work on open-source. This means that my time is limited and my work here comes after my personal life.

Performance

A comprehensive benchmark suite including DashMap can be found here.

Special thanks

License

This project is licensed under MIT.

Dependencies

~0.8–8MB
~27K SLoC