Fix Computer Science roadmap MFU cache description (#4174)

Issue ##4172
pull/4175/head
Levon 2 years ago committed by GitHub
parent fa8551dd31
commit 36d4d8e449
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/data/roadmaps/computer-science/content/104-common-algorithms/109-cache-algorithms/102-mfu-cache.md

@ -1,6 +1,6 @@
# MFU Cache # MFU Cache
MFU Cache is a variation of the LRU Cache. The difference is that instead of deleting the least recently used entry, the MFU Cache deletes the least frequently used entry. MFU Cache is another cache algorithm. The difference is that instead of deleting the least frequently used entry, the MFU Cache deletes the most frequently used entry.
Visit the following resources to learn more: Visit the following resources to learn more:

Loading…
Cancel
Save