array-map
An array based `HashMap` (by Luro02)
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. (by robclu)
array-map | leapfrog | |
---|---|---|
1 | 3 | |
1 | 222 | |
- | 2.7% | |
10.0 | 2.9 | |
almost 3 years ago | 2 months ago | |
Rust | Rust | |
- | Apache License 2.0 |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
array-map
Posts with mentions or reviews of array-map.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-11-01.
-
Fresh Tweak on Open Addressing Hash Maps
In case you are wondering how I know all that stuff, it is mainly because I had to take an algorithms course in university and was forced to learn this. For a while I had wondered if it would be possible to create something like what an `ArrayVec` is to `Vec`, but for HashMaps and began implementing this in https://github.com/Luro02/array-map
leapfrog
Posts with mentions or reviews of leapfrog.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-03-15.
-
Leapfrog 0.2.0 (improved concurrent rust hashmap)
I'm announcing v 0.2.0 of leapfrog (crate), which adds new features and fixes the collision problems of the previous version. The performance is slightly reduced, but not by much and the maps are still very fast.
-
On my way to make the production rusty
You can try Leapfrog as your concurrent hashmap implementation https://github.com/robclu/leapfrog. I recently stumbled across it and was pleased by its performance
-
Announcing Leapfrog, a faster concurrent HashMap
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.
What are some alternatives?
When comparing array-map and leapfrog you can also consider the following projects:
hashmap-compare - A comparison of standard library and language implementations of hashmaps
dashmap - Blazing fast concurrent HashMap for Rust.
scalable-concurrent-containers - High-performance containers and utilities for concurrent and asynchronous programming
indicium - A simple in-memory search for collections and key-value stores.