6 ms·
Hi, do you know if there's a recent hash benchmark I can look into? I am using `FnvHash` as my go-to non-crypto-secure hash for performance reason, didn't reali
by QuadDamaged 4y ago
Hi, do you know if there's a recent hash benchmark I can look into? I am using `FnvHash` as my go-to non-crypto-secure hash for performance reason, didn't realise there could be faster contenders.
Thanks!
- insanitybit 4y agoThese seem decent: https://github.com/tkaitchuck/aHash/blob/master/FAQ.md https://github.com/tkaitchuck/aHash/blob/master/FAQ.md
- llimllib 4y agoThis is the best, most comprehensive hash test suite I know of: https://github.com/rurban/smhasher/ https://github.com/rurban/smhasher/ you might want to particularly look into murmur, spooky, and metrohash. I'm not exactly sure of what the tradeoffs involved are, or what your need is, but that site should serve as a good starting point at least.