# File lib/rufus/lru.rb, line 132
  def remove_lru

    while size >= @maxsize

      key = @lru_keys.delete_at(0)
      delete(key)
    end
  end