Penguin
Blame: WriteThrough
EditPageHistoryDiffInfoLikePages
Annotated edit history of WriteThrough version 2, including all changes. View license author blame.
Rev Author # Line
1 AristotlePagaltzis 1 A strategy for handling cached write accesses.
2
2 AristotlePagaltzis 3 WriteThrough means that data from a write operation which goes through the [Cache] is written back to the cached backend immediately.
1 AristotlePagaltzis 4
2 AristotlePagaltzis 5 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.