When a system writes data to cache, it must at some point write that data to the backing store as well.
Why? My course note's don't justify this. Is any component but the processor interested in what's in the cache? Apparently this mirroring isn't even very urgent, as we can postpone the the writes...
The timing of this write is controlled by what is known as the write policy.
There are two basic writing approaches:
...
Write-back (or write-behind): initially, writing is done only to the cache. The write to the backing store is postponed until the cache blocks containing the data are about to be modified/replaced by new content.
So it's postponed until it's about to be replaced? How does that make any sense -- you're mirroring information that you know is about to change! Why not do it when blocks are added?