Differences between revisions 2 and 3
Revision 2 as of 2004-03-18 19:17:18
Size: 185
Editor: yakko
Comment:
Revision 3 as of 2004-03-18 19:23:22
Size: 479
Editor: yakko
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
Advantages:

   1. Misses are simpler and cheaper because they never require a block to be written back to the lower level.
   1. Write through is easier to implement than write back, although to be practical in a high speed system, a write through cache will need to use a write buffer.

Back to VirtualMemory

Write through: The information is written to both the block in the cache and to the block in the lower level of the memory hierarchy.

Advantages:

  1. Misses are simpler and cheaper because they never require a block to be written back to the lower level.
  2. Write through is easier to implement than write back, although to be practical in a high speed system, a write through cache will need to use a write buffer.

Back to VirtualMemory

WriteThrough (last edited 2004-03-18 19:23:22 by yakko)