Optimization - Making Rust Code Go Brrrr

Optimization - Making Rust Code Go Brrrr.
Aspen’s blog :heart:

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 :+1:

1 Like

Corresponding tweet for this thread:

Pretty good article, enjoyed 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.

1 Like