Announcing Leapfrog, a faster concurrent HashMap

This page summarizes the projects mentioned and recommended in the original post on /r/rust

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • dashmap

    Blazing fast concurrent HashMap for Rust.

    Dashmap made some api changes compared to the stdlibs hashmap, which leads to some oddities, as highlighted here: https://github.com/xacrimon/dashmap/issues/175

  • leapfrog

    Lock-free concurrent and single-threaded hash map implementations using Leapfrog probing. Currently the highest performance concurrent HashMap in Rust for certain use cases.

    For a personal project I needed a concurrent HashMap, so thought I would port one of the fast C++ hashmaps to Rust., which I have called Leapfrog. The API is similar to the HashMap in the std library, but to improve concurrent performance it is slightly different in places.

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

  • hashbrown

    Rust port of Google's SwissTable hash map

    I'd be interested in seeing the results for https://github.com/rust-lang/hashbrown/tree/master/benches.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts