中文
相关论文

相关论文: Cuckoo Filter: Simplification and Analysis

200 篇论文

Cuckoo filters are space-efficient approximate set membership data structures with a controllable false positive rate (FPR) and zero false negatives, similar to Bloom filters. In contrast to Bloom filters, Cuckoo filters store multi-bit…

数据结构与算法 · 计算机科学 2025-09-10 Johanna Elena Schmitz , Jens Zentgraf , Sven Rahmann

Popular approximate membership query structures such as Bloom filters and cuckoo filters are widely used in databases, security, and networking. These structures represent sets approximately, and support at least two operations - insert and…

数据结构与算法 · 计算机科学 2022-01-17 Jim Apple

It is shown that for cuckoo hashing with a stash as proposed by Kirsch, Mitzenmacher, and Wieder (2008) families of very simple hash functions can be used, maintaining the favorable performance guarantees: with stash size $s$ the…

数据结构与算法 · 计算机科学 2012-04-20 Martin Aumüller , Martin Dietzfelbinger , Philipp Woelfel

In this paper, we present an implementation of a cuckoo filter for membership testing, optimized for distributed data stores operating in high workloads. In large databases, querying becomes inefficient using traditional search methods. To…

分布式、并行与集群计算 · 计算机科学 2020-06-30 Aman Khalid

Many applications of approximate membership query data structures, or filters, require only an incremental filter that supports insertions but not deletions. However, the design space of incremental filters is missing a "sweet spot" filter…

数据结构与算法 · 计算机科学 2022-10-26 Tomer Even , Guy Even , Adam Morrison

Bloom filters, cuckoo filters, and other approximate set membership sketches have a wide range of applications. Oftentimes, expensive operations can be skipped if an item is not in a data set. These filters provide an inexpensive, memory…

数据结构与算法 · 计算机科学 2020-05-07 Daniel Ting , Rick Cole

The Bloom filter provides fast approximate set membership while using little memory. Engineers often use these filters to avoid slow operations such as disk or network accesses. As an alternative, a cuckoo filter may need less space than a…

数据结构与算法 · 计算机科学 2020-10-12 Thomas Mueller Graf , Daniel Lemire

Set synchronization is a fundamental task in distributed applications and implementations. Existing methods that synchronize simple sets are mainly based on compact data structures such as Bloom filter and its variants. However, these…

数据结构与算法 · 计算机科学 2020-03-10 Shangsen Li , Lailong Luo , Deke Guo

Bloom and cuckoo filters provide fast approximate set membership while using little memory. Engineers use them to avoid expensive disk and network accesses. The recently introduced xor filters can be faster and smaller than Bloom and cuckoo…

数据结构与算法 · 计算机科学 2022-03-15 Thomas Mueller Graf , Daniel Lemire

Filters such as Bloom, quotient, and cuckoo filters are fundamental building blocks providing space-efficient approximate set membership testing. However, many applications need to associate small values with keys-functionality that filters…

数据结构与算法 · 计算机科学 2025-10-08 Michael A. Bender , Alex Conway , Martín Farach-Colton , Rob Johnson , Prashant Pandey

This paper introduces CuCoTrack, a cuckoo hash based data structure designed to efficiently implement connection tracking. The proposed scheme exploits the fact that queries always match one existing connection to compress the 5-tuple that…

数据结构与算法 · 计算机科学 2018-06-12 Pedro Reviriego , Salvatore Pontarelli , Gil Levy

Cuckoo hashing is a highly practical dynamic dictionary: it provides amortized constant insertion time, worst case constant deletion time and lookup time, and good memory utilization. However, with a noticeable probability during the…

数据结构与算法 · 计算机科学 2009-03-04 Yuriy Arbitman , Moni Naor , Gil Segev

We introduce the adaptive cuckoo filter (ACF), a data structure for approximate set membership that extends cuckoo filters by reacting to false positives, removing them for future queries. As an example application, in packet processing…

数据结构与算法 · 计算机科学 2017-10-12 Michael Mitzenmacher , Salvatore Pontarelli , Pedro Reviriego

Cuckoo hashing is a common hashing technique, guaranteeing constant-time lookups in the worst case. Adding a stash was proposed by Kirsch, Mitzenmacher, and Wieder at SICOMP 2010, as a way to reduce the probability of failure (i.e., the…

数据结构与算法 · 计算机科学 2023-01-03 Brice Minaud , Charalampos Papamanthou

Hash tables are ubiquitous in computer science for efficient access to large datasets. However, there is always a need for approaches that offer compact memory utilisation without substantial degradation of lookup performance. Cuckoo…

数据结构与算法 · 计算机科学 2019-07-17 Megha Khosla , Avishek Anand

Probabilistic filters are approximate set membership data structures that represent a set of keys in small space, and answer set membership queries without false negative answers, but with a certain allowed false positive probability. Such…

数据库 · 计算机科学 2025-08-14 Johanna Elena Schmitz , Jens Zentgraf , Sven Rahmann

Filters (such as Bloom Filters) are data structures that speed up network routing and measurement operations by storing a compressed representation of a set. Filters are space efficient, but can make bounded one-sided errors: with tunable…

数据结构与算法 · 计算机科学 2021-05-25 Tsvi Kopelowitz , Samuel McCauley , Ely Porat

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…

网络与互联网体系结构 · 计算机科学 2017-12-29 Nicolas Le Scouarnec

Cuckoo hashing guarantees constant-time lookups regardless of table density, making it a viable candidate for high-density tables. Cuckoo hashing insertions perform poorly at high table densities, however. In this paper, we mitigate this…

数据结构与算法 · 计算机科学 2016-05-18 William Kuszmaul

Cuckoo hashing is a powerful primitive that enables storing items using small space with efficient querying. At a high level, cuckoo hashing maps $n$ items into $b$ entries storing at most $\ell$ items such that each item is placed into one…

密码学与安全 · 计算机科学 2023-06-21 Kevin Yeo
‹ 上一页 1 2 3 10 下一页 ›