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?)
feedback
|
|
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
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. | |||
|
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. | |||
|
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. | |||
|
feedback
|
|
The rufus-lru gem is another option. Instead of a count it just keeps a sorted array of keys from oldest to newest | |||
|
feedback
|
|
Very simple and fast: http://codesnippets.joyent.com/posts/show/12329 | |||
|
feedback
|
|
gem install ruby-cache | |||
|
feedback
|