← Latest papers
💬 NLP

DeltaKV: Residual-Based KV Cache Compression via Long-Range Similarity

DeltaKV is a residual-based KV cache compression framework that leverages long-range token similarity to reduce memory usage to 29% of the original, paired with a high-performance Sparse-vLLM engine to achieve up to 2×\times throughput improvement in long-context scenarios.

Original authors: Jitai Hao, Qiang Huang, Yaowei Wang, Min Zhang, Jun Yu

Published 2026-02-10
📖 3 min read☕ Coffee break read

Original authors: Jitai Hao, Qiang Huang, Yaowei Wang, Min Zhang, Jun Yu

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

Imagine you are trying to write a massive, thousand-page epic novel. To keep your story consistent, you need to remember everything you’ve written so far—every character's eye color, every plot twist, and every setting.

In the world of Artificial Intelligence (LLMs), this "memory" is called the KV Cache. The problem is that as the story gets longer, the memory required becomes so huge that it eventually crashes the computer's "brain" (the GPU).

Currently, AI researchers try to solve this in two ways:

  1. The Eraser Method (Eviction): They just throw away old pages to save space. But if you throw away the page where you introduced the villain, the story stops making sense.
  2. The Highlighter Method (Sparsity): They keep everything but only "look" at certain highlighted parts. This saves time, but it doesn't actually save much physical space in the library.

DeltaKV is a third, much smarter way. Here is how it works using three simple analogies:

1. The "Reference Photo" Strategy (Long-Range Similarity)

Imagine you are a detective looking at thousands of crime scene photos. Instead of memorizing every single pixel of every photo, you realize that many photos look almost identical.

Instead of storing 1,000 full photos, you pick 10 "Master Reference Photos." For every other photo, you don't save the whole image; you only write down a tiny note: "This photo is exactly like Reference Photo #3, but the suspect is wearing a red hat instead of a blue one."

DeltaKV does exactly this. It realizes that many parts of an AI's memory are repetitive. It saves a few "Reference Tokens" and, for everything else, it only stores the "Delta" (the difference). This is why it can shrink the memory usage to just 29% of its original size without losing the plot.

2. The "Sketch vs. Oil Painting" Concept (Highly Shared Components)

Think about a landscape painting. Most of the canvas is filled with "shared" things: the blue of the sky, the green of the grass, and the texture of the clouds. You don't need to describe the blue sky every time you mention a tree.

DeltaKV noticed that KV caches have "High-Norm Latent Components"—basically, a lot of "blue sky" that is common across all tokens. DeltaKV strips away all that common "background noise" and only stores the unique "details" (the specific tree or the specific bird). Because the "details" are much smaller and simpler than the "whole painting," they are incredibly easy to compress.

3. The "Express Lane" (Sparse-vLLM)

Even if you have a tiny, compressed notebook, you still need a fast way to read it. If you have to spend ten minutes decoding every tiny note, you'll be too slow to be useful.

The researchers built a specialized engine called Sparse-vLLM. Think of this as a high-speed scanner designed specifically to read "shorthand notes." Because it knows exactly how the DeltaKV notes are structured, it can skip the "full books" and jump straight to the "shorthand," allowing the AI to work up to 2x faster than before.

The Bottom Line

DeltaKV turns a massive, heavy library of full books into a slim, efficient folder of "Master References" and "Quick Shorthand Notes."

The Result: You can give the AI much longer "stories" (longer contexts) to read and write, it uses much less expensive hardware, and it does it all without forgetting who the villain is.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →