Skip to content

Commit

Permalink
#19 litemap
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Apr 23, 2023
1 parent cd73a14 commit e90d36c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Expand Up @@ -25,4 +25,5 @@ nohash-hasher = "0.2.0"
tinymap = "0.4.0"
linked-hash-map = "0.5.6"
linear-map = "1.2.0"
indexmap = "1.9.3"
indexmap = "1.9.3"
litemap = "0.7.0"
6 changes: 6 additions & 0 deletions tests/benchmark.rs
Expand Up @@ -120,6 +120,12 @@ fn benchmark(total: usize) -> HashMap<&'static str, Duration> {
indexmap::IndexMap::<u32, i64>::new(),
total
);
insert!(
"litemap::LiteMap",
ret,
litemap::LiteMap::<u32, i64>::new(),
total
);
insert!(
"micromap::Map",
ret,
Expand Down

0 comments on commit e90d36c

Please sign in to comment.