Previous | Next --- Slide 41 of 56
Back to Lecture Thumbnails
nmrrs

Update based cache coherence looks a lot better here because updating prevents cache misses by ensuring that the most recent version of the data is in the cache. However, it can cause a lot of unnecessary traffic when a cache line is read from once and never touched by a processor again. If another processor keeps writing to the same line, the untouched line will be repeatedly updated even though it's never needed again.

ppwwyyxx

In other words, the "update based" strategy suffers from the fact that cache will always try to keep itself full. Users have no explicit control to evict cache. That's why an "update" operation might need to be constantly communicated across processors, and become expensive.