Write-through keeps the cache and database consistent by writing to both synchronously, which makes writes as slow as the database. Write-behind takes the opposite bet: write to the cache immediately, acknowledge right away, and persist to the database asynchronously a moment later. Writes become...