rigtorp / HashMap

An open addressing linear probing hash table, tuned for delete heavy workloads
MIT License
198 stars 31 forks source link

Performance tests from Martin Ankerl #2

Open dumblob opened 5 years ago

dumblob commented 5 years ago

How does this hashmap perform with regards to the thorough testing @martinus did in his blog series about the current cutting edge hash maps?

martinus commented 5 years ago

I've tried to add it when creating the benchmark, but unfortunately the map doesn't have a default constructor so I've stopped right there. See https://github.com/martinus/map_benchmark#maps-i-couldnt-add

rigtorp commented 5 years ago

Yes I think the empty key should be selected through a template parameter instead of a constructor argument at runtime.