Penguin

An Acronym for Least Recently Used.

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.

While simplistic, this strategy is plenty effective.

Compare LFU.