What's the most efficient way to build a cache with arbitrary Ruby objects as keys that are expired based on a least recently used algorithm. It should use Ruby's normal hashing semantics (not equal?)

link|improve this question

80% accept rate
Are you trying for minimal memory use or minimal cpu use, how often are you dropping stuff out of the LRU cache? You can either go the scavenger approach or a double linked list with a paired hash. – Sam Saffron Dec 20 '09 at 11:24
for some ideas see: java.sun.com/j2se/1.4.2/docs/api/java/util/LinkedHashMap.html also mongodb has capped collection similarly you can do this stuff with redis. assuming you are looking for a built in ruby solution though – Sam Saffron Dec 20 '09 at 11:26
feedback

7 Answers

up vote 4 down vote accepted

This pushes the boundaries of my understanding of how Ruby uses memory, but I suspect that the most efficient implementation would be a doubly-linked list where every access moves the key to the front of the list, and every insert drops an item if the maximum size has been reached.

However, assuming Ruby's Hash class is already very efficient, I'd bet that the somewhat naive solution of simply adding age data to a Hash would be fairly good. Here's a quick toy example that does this:

class Cache
  attr_accessor :max_size

  def initialize(max_size = 4)
    @data = {}
    @max_size = max_size
  end

  def store(key, value)
    @data.store key, [0, value]
    age_keys
    prune
  end

  def read(key)
    if value = @data[key]
      renew(key)
      age_keys
    end
    value
  end

  private # -------------------------------

  def renew(key)
    @data[key][0] = 0
  end

  def delete_oldest
    m = @data.values.map{ |v| v[0] }.max
    @data.reject!{ |k,v| v[0] == m }
  end

  def age_keys
    @data.each{ |k,v| @data[k][0] += 1 }
  end

  def prune
    delete_oldest if @data.size > @max_size
  end
end

There's probably a faster way of finding the oldest item, and this is not thoroughly tested, but I'd be curious to know how anyone thinks this compares to a more sophisticated design, linked list or otherwise.

link|improve this answer
feedback

Remaze has a reasonably well tested LRU Cache: See http://github.com/manveru/ramaze/blob/master/lib/ramaze/snippets/ramaze/lru%5Fhash.rb

And there is also this: http://github.com/rubyworks/lrucache/blob/master/lib/lrucache.rb which should be more efficient than the remaze one for large caches.

link|improve this answer
feedback

I threw together a new gem lrucache which you may find useful. It may be faster than Alex's approach for collections with a significant number of elements.

link|improve this answer
feedback

Ruby Best Practices blog has a post about it.

link|improve this answer
feedback

The rufus-lru gem is another option.

Instead of a count it just keeps a sorted array of keys from oldest to newest

link|improve this answer
feedback

Very simple and fast: http://codesnippets.joyent.com/posts/show/12329

link|improve this answer
feedback

gem install ruby-cache

--> http://www.nongnu.org/pupa/ruby-cache-README.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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