Least frequently used

From Wikipedia, the free encyclopedia

Least Frequently Used (LFU) is a type of cache algorithm used to manage memory within a computer. The standard characteristics of this method involve the system keeping track of the number of times a block is referenced in memory. When the cache is full and requires more room the system will purge the item with the lowest reference frequency.

LFU is sometimes combined with a Least Recently Used algorithm and called LRFU.[1]

Implementation[edit]

The simplest method to employ an LFU algorithm is to assign a counter to every block that is loaded into the cache. Each time a reference is made to that block the counter is increased by one. When the cache reaches capacity and has a new block waiting to be inserted the system will search for the block with the lowest counter and remove it from the cache, in case of a tie (i.e., two or more keys with the same frequency), the Least Recently Used key would be invalidated.[2]

  • Ideal LFU: there is a counter for each item in the catalogue
  • Practical LFU: there is a counter for the items stored in cache. The counter is forgotten if the item is evicted.

Problems[edit]

While the LFU method may seem like an intuitive approach to memory management it is not without faults. Consider an item in memory which is referenced repeatedly for a short period of time and is not accessed again for an extended period of time. Due to how rapidly it was just accessed its counter has increased drastically even though it will not be used again for a decent amount of time. This leaves other blocks which may actually be used more frequently susceptible to purging simply because they were accessed through a different method.[3]

Moreover, new items that just entered the cache are subject to being removed very soon again, because they start with a low counter, even though they might be used very frequently after that. Due to major issues like these, an explicit LFU system is fairly uncommon; instead, there are hybrids that utilize LFU concepts.[4]

See also[edit]

References[edit]

  1. ^ Donghee Lee; Jongmoo Choi; Jong-Hun Kim; S.H. Noh; Sang Lyul Min; Yookun Cho; Chong Sang Kim (December 2001). "LRFU: a spectrum of policies that subsumes the least recently used and least frequently used policies". IEEE Transactions on Computers. 50 (12): 1352–1361. doi:10.1109/TC.2001.970573. S2CID 2636466.
  2. ^ Silvano Maffeis (December 1993). "Cache Management Algorithms for Flexible Filesystems". ACM SIGMETRICS Performance Evaluation Review. 21 (2): 16–25. CiteSeerX 10.1.1.48.8399. doi:10.1145/174215.174219. S2CID 7624318.
  3. ^ William Stallings (2012). Operating Systems: Internals and Design Principles (7th ed.).
  4. ^ B.T. Zivkoz; A.J. Smith (1997). "Disk Caching in Large Database and Timeshared Systems". Proceedings Fifth International Symposium on Modeling, Analysis, and Simulation of Computer and Telecommunication Systems. doi:10.1109/MASCOT.1997.567612.

External links[edit]