# File lib/rufus/lru.rb, line 110
  def delete (key)

    value = super
    @lru_keys.delete(key)

    value
  end