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

      return nil unless has_key?(key)

      touch(key)

      super
    end