What Is a Write-Back Cache?
A write-back cache stores a write in the cache and reports success right away, then flushes the change to the underlying store asynchronously. This keeps writes fast and can batch many updates into fewer backing-store operations. The trade-off is that data buffered in the cache can be lost if the cache fails before it flushes.
Why it matters
Write-back lowers write latency and backing-store load, which suits write-heavy workloads. But because acknowledged data may not yet be durable, it needs care where loss is unacceptable, unlike a write-through cache.
Related guides
Write-Through Cache - CI/CD Glossary DefinitionA write-through cache writes data to the cache and the backing store at the same time, so the cache is never…
What Is Cache Invalidation?Cache invalidation is the act of removing or marking cached entries as stale when the underlying data changes…
What Is a Cache Hit?A cache hit occurs when requested data is found in the cache and served directly, avoiding the slower trip to…