Concept Flow - Write-behind pattern
Client writes data to cache
Cache stores data immediately
Write operation queued
Background process writes data to DB
DB updated asynchronously
Client reads get latest from cache
Client writes data to cache first; cache stores it and queues write to database. Background process updates DB later, so writes are asynchronous.