Four things in an LLM stack store four different objects, and all of them get called caching.
The KV cache stores attention tensors for one request.
Prefix caching stores those same tensors on the server, keyed by a hash chain over token IDs.
Prompt caching is the provider’s billed version of that same lookup, at 0.1x the base input rate on a read against a...