Penguin

A strategy for handling cached write accesses.

WriteThrough means that data from a write operation which goes through the Cache is written back to the cached backend immediately.

This is simple to implement and assures data integrity (the data in the Cache is always in sync with that on the cached backend), but it's slower than WriteBack.