From 36d4d8e4492e3de1ba834c9c9be8a4212a6bd908 Mon Sep 17 00:00:00 2001 From: Levon <30443259+levsargsyan@users.noreply.github.com> Date: Thu, 6 Jul 2023 18:50:36 +0400 Subject: [PATCH] Fix Computer Science roadmap MFU cache description (#4174) Issue ##4172 --- .../104-common-algorithms/109-cache-algorithms/102-mfu-cache.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/computer-science/content/104-common-algorithms/109-cache-algorithms/102-mfu-cache.md b/src/data/roadmaps/computer-science/content/104-common-algorithms/109-cache-algorithms/102-mfu-cache.md index b2093215e..cbbec4577 100644 --- a/src/data/roadmaps/computer-science/content/104-common-algorithms/109-cache-algorithms/102-mfu-cache.md +++ b/src/data/roadmaps/computer-science/content/104-common-algorithms/109-cache-algorithms/102-mfu-cache.md @@ -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: