Optimization - Making Rust Code Go Brrrr

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