class Rufus::Lru::Hash

def [](key)

def [](key)
  return nil unless has_key?(key)
  touch(key)
  super
end