# File lib/rbot/httputil.rb, line 295
  def expired?(hash, time)
    (time - hash[:last_use] > @bot.config['http.expire_time']*60) or
    (time - hash[:first_use] > @bot.config['http.max_cache_time']*60)
  end