I am learning the cache in a distributed system design. I am confused by the write-around cache.
This technique(write-around cache) is similar to write-through cache, but data is written directly to permanent storage, bypassing the cache.
All the blog and tutorial only mention that the write directly goes to database, but not mentioning what to do with the cache afterward. If it does nothing to cache, the "cache strategy" here is totally non-sense. Is there any procedure like syncing the database to cache in every some interval?