MEPIC: Memory Efficient Position Independent Caching for LLM Serving
Qian Wang, Zahra Yousefijamarani, Morgan Lindsay Heisler, Rongzhi Gu, Bai Xiaolong, Shan Yizhou, Wei Zhang, Wang Lan, Ying Xiong, Yong Zhang, Zhenan Fan
TL;DR
MEPIC tackles the memory bottleneck of KV caches in long-context LLM serving by enabling cross-position, cross-request chunk KV reuse within a paged, HBM-resident KV store. It introduces a chunk cache coordinator, a segmentation-and-padding scheme for canonical, block-aligned KV layouts, selective block-level recomputation, and a position-independent NoPE KV format with RoPE fusion in the attention kernel. The approach integrates into the existing vLLM+LMCache stack, achieving substantial HBM reductions (up to 2x–5x) with comparable or improved latency and accuracy across diverse datasets and workloads, especially under long prompts and high concurrency. This yields practical, production-scale benefits for multi-tenant LLM serving without model changes, enabling more scalable long-context inference.
Abstract
Modern LLM applications such as deep-research assistants, coding agents, and Retrieval-Augmented Generation (RAG) systems, repeatedly process long prompt histories containing shared document or code chunks, creating significant pressure on the Key Value (KV) cache, which must operate within limited memory while sustaining high throughput and low latency. Prefix caching partially alleviates some of these costs by reusing KV cache for previously processed tokens, but limited by strict prefix matching. Position-independent caching (PIC) enables chunk-level reuse at arbitrary positions, but requires selective recomputation and positional-encoding (PE) adjustments. However, because these operations vary across queries, KV for the same chunk diverges across requests. Moreover, without page alignment, chunk KV layouts diverge in memory, preventing page sharing. These issues result in only modest HBM savings even when many requests reuse the same content. We present MEPIC, a memory-efficient PIC system that enables chunk KV reuse across positions, requests, and batches. MEPIC aligns chunk KV to paged storage, shifts recomputation from token- to block-level so only the first block is request-specific, removes positional encodings via Rotary Position Embedding (RoPE) fusion in the attention kernel, and makes remaining blocks fully shareable. These techniques eliminate most duplicate chunk KV in HBM, reducing usage by up to 2x over state-of-the-art PIC at comparable latency and accuracy, and up to 5x for long prompts, without any model changes.
