See also: Cache | FIFO | Clock
Least Recently Used, a cache replacement algorithm which, when the cache is full and one item must be removed to make room for a newer item, selects the item that was used least recently. This makes better use of the purpose of a cache than something like FIFO since it retains the most frequently accessed items.
TakeDown.NET -> “LRU”