DBDSJun 15

C^2: Cache-Conscious Succinct Tries with Adaptive Unary Path Compression

arXiv:2606.161042.6
Predicted impact top 89% in DB · last 90 daysOriginality Incremental advance
AI Analysis

For applications using string dictionaries, this work provides a practical optimization to improve the space-time tradeoff of succinct tries, though it is an incremental improvement over existing methods.

C^2 introduces two techniques to improve cache locality and compress unary paths in succinct tries, achieving up to 1.58x faster queries and 1.3x smaller memory footprint on average across three state-of-the-art succinct trie implementations.

Succinct tries are powerful string dictionaries because of their low memory footprint and fast query performance. However, existing succinct trie implementations face two key challenges to spatial locality: 1) they incur unnecessary cache misses during queries, especially during trie navigation operations, and 2) they waste significant space when the data contains many unary paths. We propose C^2, a set of two techniques: C_1 introduces a more cache-friendly layout for the \bv underlying succinct tries, and C_2 compresses redundant unary paths. We thoroughly redesign three state-of-the-art succinct tries: FST, CoCo-trie, and Marisa, producing C^2-FST, C^2-CoCo, and C^2-Marisa. Experiments on six diverse datasets show that the C_1 optimization improves query performance by 1.58x, 1.12x, and 1.42x, respectively, compared to the original FST, CoCo-trie, and Marisa. Furthermore, the C_2 optimization achieves a 1.3x smaller memory footprint on average. The succinct tries optimized with both aspects of C^2 achieve better space-time tradeoffs than their original versions and other state-of-the-art succinct tries, while using significantly less space than non-succinct tries like ART and C-ART.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes