datenlord / lockfree-cuckoohash

A rust implementation of lock free cuckoo hashmap
MIT License
67 stars 10 forks source link

Support FnvHasher #16

Open Nugine opened 2 years ago

Nugine commented 2 years ago

https://docs.rs/fnv/latest/fnv/

The FNV hash function is a custom Hasher implementation that is more efficient for smaller hash keys. When you have a map of integers to other values, FNV is demonstrably faster.

Nugine commented 2 years ago