PulseAugur
EN
LIVE 18:51:25

LLM KV Cache Management: Security Threats and Efficiency Innovations

Researchers are exploring new methods to manage the Key-Value (KV) cache in large language models, which is crucial for inference speed but grows linearly with context length. One approach, "Error Certificates for KV-Cache Eviction via Randomized Design," proposes using randomized eviction strategies to provide error bounds and improve attribution of failures, showing nearly free performance gains at reduced budgets. In contrast, "HijackKV" identifies a new security vulnerability in position-independent KV cache reuse, where contaminated KV data can silently hijack model behavior with a high success rate. A third method, "SelKV," offers a training-free framework for KV cache compression, using adaptive merging and attention compensation to maintain generation quality and achieve significant decoding speedups. AI

IMPACT Innovations in KV cache management could significantly improve LLM inference speed and reduce memory footprints, while security research highlights critical vulnerabilities in current reuse strategies.

RANK_REASON The cluster consists of multiple research papers detailing new techniques and identifying vulnerabilities related to KV cache management in LLMs.

Read on Hugging Face Daily Papers →

AI-generated summary · Google Gemini · from 4 sources. How we write summaries →

LLM KV Cache Management: Security Threats and Efficiency Innovations

COVERAGE [4]

  1. arXiv cs.AI TIER_1 English(EN) · Peng Xie ·

    Error Certificates for KV-Cache Eviction via Randomized Design

    arXiv:2607.21475v1 Announce Type: cross Abstract: Deterministic KV-cache eviction keeps the top-$k$ tokens under an importance score and deletes the rest. We prove that this design cannot know what it destroyed: evicted values can be altered so that everything the serving system …

  2. Hugging Face Daily Papers TIER_1 English(EN) ·

    Error Certificates for KV-Cache Eviction via Randomized Design

    Deterministic KV-cache eviction keeps the top-$k$ tokens under an importance score and deletes the rest. We prove that this design cannot know what it destroyed: evicted values can be altered so that everything the serving system retains is unchanged while the true attention-outp…

  3. arXiv cs.AI TIER_1 English(EN) · Yichi Zhang, Zhiqi Wang, Huan Zhang, Yuchen Yang ·

    HijackKV: New Threat in Position-Independent KV Cache Reuse

    arXiv:2607.19957v1 Announce Type: cross Abstract: Key-Value (KV) cache reduces inference latency in large language models (LLMs). Traditional prefix-based reuse has low cache hit rates across inference requests because it requires exact token and position matches. To improve effi…

  4. arXiv cs.AI TIER_1 English(EN) · Soumia Bouyahiaoui, Manel Kara laouar, Aicha Boutorh, Mohamed Hadj Ameur ·

    SelKV: Selective KV Cache Merging with Per-Token Merge-or-Drop and Attention Compensation

    arXiv:2607.16213v1 Announce Type: new Abstract: Large Language Models (LLMs) generate text autoregressively, relying on a key-value (KV) cache whose memory footprint grows linearly with context length, creating a major bottleneck. Recent compression methods mitigate this cost via…