2 Comments
User's avatar
⭠ Return to thread
Des Ignatius's avatar

Can you explain the difference between Cache-Aside (Lazy Loading) and Write-Around Cache patterns

Expand full comment
Priyansh Agrawal's avatar

the main difference is, in case of Cache-Aside cache data is also updated by the application post database write whereas in write-around cache pattern based on what author has mentioned, it don't store the data in cache and will store in it in the case of cache miss thus follows the same read path as that of cache-aside.

Expand full comment
ErrorError