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