Optimization - Making Rust Code Go Brrrr.
Aspen’s blog
This was posted by one of our members via one of our automated news source trackers. If you feel this thread could be in a better category or could include better tags and you are at Trust Level 3 or higher, please feel free to move/edit it
I can attest to DashMap being an extremely good library. I was very surprised when I needed parallel access to a map with very rare updates and mostly reads. The DashMap API almost disappeared in any performance measurement. It’s faster than a plain Mutex or RwLock for sure.