Skip to content

Commit

Permalink
#7 nohash
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Apr 17, 2023
1 parent fda2e8d commit 7b68f51
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
At least **5x faster** alternative of [`HashMap`](https://doc.rust-lang.org/std/collections/struct.HashMap.html),
for very small maps. It is also faster than
[FxHashMap](https://github.com/rust-lang/rustc-hash),
[Hashbrown](https://github.com/rust-lang/hashbrown),
and
[ArrayMap](https://github.com/robjtede/tinymap).
[hashbrown](https://github.com/rust-lang/hashbrown),
[ArrayMap](https://github.com/robjtede/tinymap),
and
[nohash-hasher](https://github.com/paritytech/nohash-hasher).
The smaller the map, the higher the
performance. When the map contains more than 50 keys, it is better to use the standard
[`HashMap`](https://doc.rust-lang.org/std/collections/struct.HashMap.html), since
Expand Down

0 comments on commit 7b68f51

Please sign in to comment.