▲ 19 r/Zig
how I create a event loop for receiving from clients with new std.Io?
reddit.comu/ANDRVV_ — 1 day ago
I’m looking for guidance on designing or choosing a high-performance hashmap with the following characteristics:
I know that some C++ libraries like flat_hash_map or robin_hood::unordered_map achieve this by storing key/value pairs contiguously in memory and using open addressing instead of chaining.
Questions:
Looking for insights from anyone who has built or benchmarked ultra-fast hashmaps with minimal cache misses. Thanks!