Which caching strategy involves keeping the most recently used items?

  • LRU (Least Recently Used)
  • FIFO (First In, First Out)
  • Random Replacement
  • LFU (Least Frequently Used)
The caching strategy that involves keeping the most recently used items is called LRU, which stands for "Least Recently Used." In LRU caching, when the cache is full and needs to make space for a new item, it removes the least recently accessed item. This strategy is often used to maximize cache efficiency.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *