More Than a Quick Glance: Overcoming the Greedy Bias in KV-Cache Compression
Aryan Sood, Tanvi Sharma, Vansh Agrawal
TL;DR
The paper tackles the challenge of long-context memory under fixed KV-cache budgets in LLMs. It introduces LASER-KV, a block-wise, accumulative KV memory with a protection divisor $n$ and an Exact-LSH recall policy that fuses $ExactAttention$ and LSH for token selection. On Babilong, standard compression degrades performance by about $15\%$ to $30\%$ at long contexts, while LASER-KV remains stable up to $128k$ tokens and achieves up to $10\%$ accuracy gains at $128k$. The results argue that token utility in long contexts cannot be captured by attention scores alone and highlight the value of hybrid, structure-aware selection for sustainable long-term memory in LLMs.
Abstract
While Large Language Models (LLMs) can theoretically support extensive context windows, their actual deployment is constrained by the linear growth of Key-Value (KV) cache memory. Prevailing compression strategies mitigate this through various pruning mechanisms, yet trade-off semantic recall for memory efficiency. In this work, we present LASER-KV (Layer Accumulated Selection with Exact-LSH Recall), a framework designed to test the limits of KV compression under a strict accumulative budgeting policy. We deviate from the standard fixed summary size approach by implementing a block-wise accumulation strategy governed by a protection divisor (n). This allows us to isolate the effects of compression from sliding window artifacts. Our experiments on the Babilong benchmark reveal performance degradation in previous compression methods by 15-30% on various long context tasks. LASER-KV maintains stable performance, achieving superior accuracies by a margin of upto 10% at 128k. These findings challenge the prevailing assumption that attention scores alone are a sufficient proxy for token utility.
