Sha256: d6e3b6736cc16f9b51fc3ae573c526f3442a835679fda3ce339a4d10f5317759

Contents?: true

Size: 371 Bytes

Versions: 2

Compression:

Stored size: 371 Bytes

Contents

module Rack; module Throttle
  ##
  # This rate limiter strategy throttles the application by defining a
  # maximum number of allowed HTTP requests per hour (by default, 3,600
  # requests per 60 minutes, which works out to an average of 1 request per
  # second).
  #
  # _Not yet implemented in the current release._
  class Hourly < Limiter
    # TODO
  end
end; end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rack-throttle-0.2.0 lib/rack/throttle/hourly.rb
rack-throttle-0.1.0 lib/rack/throttle/hourly.rb