It is an alternative implementation of a map in Rust, which works much faster if the following conditions are met:
usize
Copy
get()
is not used before insert()
See the benchmarking results below.
First, add this to Cargo.toml
:
toml
[dependencies]
emap = "0.0.1"
Then, use it like a standard hash map... well, almost:
rust
use emap::Map;
let mut m : Map<&str, 100> = Map::new(); // allocation on stack
m.insert(1, "foo");
m.insert(42, "bar");
assert_eq!(2, m.len());
Pay attention, here the map is created with an extra generic argument 100
. This is
the total size of the map, which is allocated on stack when ::new()
is called.
If more than 100 keys will be added to the map, it will panic.
Read the API documentation.
The struct
emap::Map
is designed as closely similar to
std::collections::HashMap
as possible.
There is a summary of a simple benchmark, where we compared emap::Map
with
a few other Rust maps, changing the total capacity of the map (horizontal axis).
We applied the same interactions
(benchmark.rs
)
to them and measured how fast they performed. In the following table,
the numbers over 1.0 indicate performance gain,
while the numbers below 1.0 demonstrate performance loss.
| | 1 | 10 | 100 | 1000 | 10000 |
| --- | --: | --: | --: | --: | --: |
| emap::Map
👍 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 |
| hashbrown::HashMap
| 32.00 | 14.05 | 9.00 | 8.59 | 8.82 |
| indexmap::IndexMap
| 36.00 | 27.91 | 22.64 | 21.61 | 22.01 |
| linear_map::LinearMap
| 7.00 | 4.73 | 29.85 | 241.30 | 2K |
| linked_hash_map::LinkedHashMap
| 59.00 | 34.77 | 30.12 | 28.29 | 28.40 |
| litemap::LiteMap
| 12.00 | 7.55 | 12.16 | 34.10 | 472.24 |
| nohash_hasher::BuildNoHashHasher
| 23.00 | 16.73 | 8.55 | 7.83 | 7.66 |
| rustc_hash::FxHashMap
| 25.00 | 13.09 | 8.64 | 8.07 | 8.12 |
| std::collections::BTreeMap
| 44.00 | 24.77 | 23.37 | 44.26 | 49.86 |
| std::collections::HashMap
| 43.00 | 25.23 | 21.80 | 20.63 | 21.03 |
| tinymap::array_map::ArrayMap
| 3.00 | 16.23 | 116.53 | 1K | 9K |
The experiment was performed on 23-04-2023. There were 100 repetition cycles. The entire benchmark took 108s.
First, install Rust and then:
bash
$ cargo test -vv
If everything goes well, fork repository, make changes,
send us a pull request.
We will review your changes and apply them to the master
branch shortly,
provided they don't violate our quality standards. To avoid frustration,
before sending us your pull request please run cargo test
again. Also,
run cargo fmt
and cargo clippy
.