Skip to content

Commit

Permalink
#7 doc
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Apr 17, 2023
1 parent d13cebe commit 03d180d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@

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),
[ArrayMap](https://github.com/robjtede/tinymap). The smaller the map, the higher the
performance. When the map is larger than 50, it is better to use standard
[FxHashMap](https://github.com/rust-lang/rustc-hash)
and
[ArrayMap](https://github.com/robjtede/tinymap).
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
the performance of `micromap::Map` _may_ start to degrade.

Expand Down

0 comments on commit 03d180d

Please sign in to comment.