Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know the algorithms of MRU and its reversed one Least Recently Used (LRU).

I think LRU is reasonable, as LRU element means it will be used at least possible in future. However, MRU element means the element is very possible to be used in future, why evict it? What is the reasonable scenario?

share|improve this question

3 Answers

up vote 3 down vote accepted

Imagine you were looking up the details of buses as they arrived at a bus stop, based on their bus number (or whatever identifier you use).

It's somewhat reasonable to think that if you've just seen a number 36 bus, you're less likely to see another one imminently than to see one of the other buses that stops there.

Just one example, but the idea is more general: in some cases, having "just seen something" is a good indicator that you're unlikely to see the same thing again soon.

share|improve this answer
Riding on a bus at the moment :)? – Petar Repac Feb 23 '11 at 7:52
@Petar: As it happens, I am now, but I was on a train when I wrote this post :) – Jon Skeet Feb 23 '11 at 7:52

The use case is when you are iterating through the same (larger-than-cache) data multiple times, and so you will not go back to recently accessed data.1

share|improve this answer

I think the both @Jon Skeet and @Jeremiah Willcock's answers are describing using MRU as a way to avoid poluting the cache with useless entries.

  1. This only works if your cache APIs allow you to change the policy on the fly; e.g. on a per-request basis. Setting your cache policy to MRU in "normal" situations is probably a bad idea ... because your cache becomes ineffective once it fills up.

  2. MRU has the problem that if you get a hit on an entry that is often used in "normal" mode while doing MRU lookups, you end up throwing out the entry ...

Better alternatives to MRU for doing a scan without poluting the cache are:

  • bypass the cache entirely,
  • probe the cache without doing a read through / update, and without altering the LRU chains.

For what it is worth, I cannot think of any use-cases for MRU that don't fit this general pattern.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.