clbarnes / arbor-rs

MIT License
0 stars 1 forks source link

Benchmark alternative hashmap (/hashset) implementations #8

Closed clbarnes closed 5 years ago

clbarnes commented 5 years ago

FNV

https://github.com/servo/rust-fnv

Hashbrown

https://github.com/Amanieu/hashbrown

FX

https://github.com/cbreeden/fxhash

std

clbarnes commented 5 years ago

hashbrown is 2-4x faster than FNV (although that might disappear in WASM due to processor instructions). Refactored to allow much easier switching of set implementation.