1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-20 08:02:35 +02:00

Fix Computer Science roadmap MFU cache description (#4174)

Issue ##4172
This commit is contained in:
Levon
2023-07-06 18:50:36 +04:00
committed by GitHub
parent fa8551dd31
commit 36d4d8e449

View File

@@ -1,6 +1,6 @@
# 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: