Penguin
Annotated edit history of LRU version 1, including all changes. View license author blame.
Rev Author # Line
1 AristotlePagaltzis 1 An [Acronym] for __L__east __R__ecently __U__sed.
2
3 This is a [Cache] entry expiry strategy. On cache miss, the least recently used record is discarded from cache to be replaced by the data read for the request which caused the cache miss.
4
5 While simplistic, this strategy is plenty effective.
6
7 Compare [LFU].