Cuckoo++ Hash Tables: High-Performance Hash Tables for Networking Applications
Nicolas Le Scouarnec

TL;DR
This paper introduces algorithmic improvements to cuckoo hash tables that significantly increase lookup performance for networking applications without changing their theoretical properties.
Contribution
The authors propose modifications to cuckoo hash tables that reduce unnecessary memory accesses, boosting lookup speeds while preserving existing theoretical guarantees.
Findings
Achieves 37M positive lookups/sec on a single core
Reaches 60M negative lookups/sec on a single core
Attains 496M lookups/sec on an 18-core system
Abstract
Hash tables are an essential data-structure for numerous networking applications (e.g., connection tracking, firewalls, network address translators). Among these, cuckoo hash tables provide excellent performance by allowing lookups to be processed with very few memory accesses (2 to 3 per lookup). Yet, for large tables, cuckoo hash tables remain memory bound and each memory access impacts performance. In this paper, we propose algorithmic improvements to cuckoo hash tables allowing to eliminate some unnecessary memory accesses; these changes are conducted without altering the properties of the original cuckoo hash table so that all existing theoretical analysis remain applicable. On a single core, our hash table achieves 37M lookups per second for positive lookups (i.e., when the key looked up is present in the table), and 60M lookups per second for negative lookups, a 50% improvement…
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Code & Models
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsNetwork Packet Processing and Optimization · Caching and Content Delivery · Network Security and Intrusion Detection
