# File lib/rufus/lru.rb, line 85
  def [] (key)

    value = super
    return nil unless value
    touch(key)

    value
  end