PFAILGJul 20

SALT: Salience-Aware Lexical Trie for Long-Context Compression

arXiv:2607.174868.3
Predicted impact top 46% in PF · last 90 daysOriginality Incremental advance
AI Analysis

For LLM inference systems handling long-context prompts, SALT addresses the theme collapse problem in existing compression methods, enabling more efficient use of limited budgets.

SALT introduces a trie-based prompt compression method that preserves thematic coverage in long documents, reducing prefill computation and KV-cache memory costs by up to 50% while maintaining task performance.

As large language models (LLMs) process increasingly longer prompts, computation and KV-cache memory costs have emerged as major bottlenecks in inference systems. Existing input-level prompt compression methods address this, but rank each sentence by a scalar relevance score, treating the document as an unstructured pool of words and sentences. Under tight budgets, this causes theme collapse, where the dominant theme(s) of a document consumes the budget, discarding less-frequent yet task-relevant themes. Preserving thematic coverage instead requires allocating the budget across recurring themes rather than scoring sentences in isolation. To this end, we propose SALT, a model-agnostic extractive framework that organizes per-sentence keywords into a trie ordered by sentence frequency (SF), a lightweight, reusable proxy for document thematic structure. This trie-based organization smooths memory allocation and prevents dominant themes from monopolizing the budget. Multi-anchor retrieval activates trie nodes labeled by query keywords at any depth, and the trie persists across dialogue turns, supporting multi-turn use without re-encoding the document. By preserving document themes, SALT reduces the prefill computation and memory cost of long-context prompts while remaining composable with KV-cache methods that target decoding-time latency and memory.

Foundations

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

Your Notes