class Hashery::LRUHash
Hash
with LRU expiry policy. There are at most max_size
elements in a LRUHash
. When adding more elements old elements are removed according to LRU policy.
Based on Robert Klemme’s LRUHash
class.
LRUHash
, Copyright © 2010 Robert Klemme.
Constants
- FETCH
- Node
-
A single node in the doubly linked LRU list of nodes.
Attributes
Public Class Methods
Source
Public Instance Methods
Source
# File lib/hashery/lru_hash.rb, line 114 def [](key) fetch(key) do |k| @default_proc ? @default_proc[self, k] : default end end
Source
# File lib/hashery/lru_hash.rb, line 165 def assoc(key) n = @h[key] if n front(n) [n.key, n.value] end end
Source
# File lib/hashery/lru_hash.rb, line 253 def clear until empty? delete_oldest end self end
Source
# File lib/hashery/lru_hash.rb, line 224 def delete(key) n = @h[key] and remove_node(n).value end
Source
# File lib/hashery/lru_hash.rb, line 231 def delete_if each_node do |n| remove_node n if yield n.key, n.value end end
Source
# File lib/hashery/lru_hash.rb, line 61 def each_key if block_given? each_node do |n| yield n.key end else enum_for :each_key end end
Iterate over each key.
Source
# File lib/hashery/lru_hash.rb, line 43 def each_pair if block_given? each_node do |n| yield [n.key, n.value] end else enum_for :each_pair end end
Iterate over each pair.
Also aliased as: each
Source
# File lib/hashery/lru_hash.rb, line 74 def each_value if block_given? each_node do |n| yield n.value end else enum_for :each_value end end
Iterate over each value.
Source
# File lib/hashery/lru_hash.rb, line 101 def fetch(key, &b) n = @h[key] if n front(n).value else (b || FETCH)[key] end end
Source
# File lib/hashery/lru_hash.rb, line 137 def has_key?(key) @h.has_key? key end
Source
# File lib/hashery/lru_hash.rb, line 148 def has_value?(value) each_pair do |k, v| return true if value.eql? v end false end
Also aliased as: value?
Source
# File lib/hashery/lru_hash.rb, line 190 def key(value) pair = rassoc(value) and pair.first end
Source
# File lib/hashery/lru_hash.rb, line 240 def max_size=(limit) limit = normalize_max(limit) while size > limit delete_oldest end @max_size = limit end
Source
# File lib/hashery/lru_hash.rb, line 177 def rassoc(value) each_node do |n| if value.eql? n.value front(n) return [n.key, n.value] end end nil end
Source
# File lib/hashery/lru_hash.rb, line 197 def store(key, value) # same optimization as in Hash key = key.dup.freeze if String === key && !key.frozen? n = @h[key] unless n if size == max_size # reuse node to optimize memory usage n = delete_oldest n.key = key n.value = value else n = Node.new key, value end @h[key] = n end front(n).value = value end
Also aliased as: []=
Source
# File lib/hashery/lru_hash.rb, line 264 def to_s s = nil each_pair {|k, v| (s ? (s << ', ') : s = '{') << k.to_s << '=>' << v.to_s} s ? (s << '}') : '{}' end
Also aliased as: inspect
Source
# File lib/hashery/lru_hash.rb, line 158 def values_at(*key_list) key_list.map {|k| self[k]} end
Private Instance Methods
Source
# File lib/hashery/lru_hash.rb, line 314 def delete_oldest n = @tail.pred raise "Cannot delete from empty hash" if @head.equal? n remove_node n end
Remove the oldest node returning the node
Source
# File lib/hashery/lru_hash.rb, line 277 def each_node n = @head.succ until n.equal? @tail succ = n.succ yield n n = succ end self end
Iterate nodes.
Source
# File lib/hashery/lru_hash.rb, line 294 def front(node) node.insert_after(@head) end
Move node to front.
node - [Node]
Source
# File lib/hashery/lru_hash.rb, line 327 def normalize_max(n) n = n.to_i raise ArgumentError, 'Invalid max_size: %p' % n unless Integer === n && n > 0 n end
Normalize the argument in order to be usable as max_size
criterion is that n.to_i must be an Integer and it must be larger than zero.
n - [#to_i] max size
Source
# File lib/hashery/lru_hash.rb, line 304 def remove_node(node) n = @h.delete(node.key) n.unlink release_proc and release_proc[n.key, n.value] n end
Remove the node and invoke release_proc
if set
node - [Node]