← Back to architecture mapcaching
✍️
Architecture Pattern POC
Write-Through / Write-Behind
Write-Through writes cache and DB sync. Write-Behind writes cache first and DB later.
Flow From Map
Write-Through: cache + DB sync
Write-Behind: cache -> return
DB write async laterYour POC Area
Replace this placeholder with your interactive proof of concept for Write-Through / Write-Behind. This route is already dedicated to this pattern, so you can add diagrams, controls, code demos, or simulations here.
Example references: Redis write strategies, cache-manager, ioredis