Hacker News new | ask | show | jobs
by spacechild1 31 days ago
> with rapidhash for hashing (since the GNU std::hash functions based on murmurhash are ridiculously slow)

Doesn't boost::unordered_flat_map use boost::hash by default? How does it compare to rapid hash and std::hash?

1 comments

It's not great.

Rapidhash is just insanely fast and provides good distribution, with built-in support for mixing.

That's good to know, thanks!