Sha256: d834ca3a3c296f348c520830e6ec1670f14c39ddc5017d3795f474aab41abfa2

Contents?: true

Size: 1.19 KB

Versions: 2

Compression:

Stored size: 1.19 KB

Contents

module Rack; module Throttle
  ##
  # This rate limiter strategy throttles the application by defining a
  # maximum number of allowed HTTP requests per minute (by default, 60
  # requests per minute, which works out to an average of 1 request per
  # second).
  #
  # Note that this strategy doesn't use a sliding time window, but rather
  # tracks requests per distinct minute. This means that the throttling
  # counter is reset every minute.
  #
  # @example Allowing up to 60 requests/minute
  #   use Rack::Throttle::Minute
  #
  # @example Allowing up to 100 requests per hour
  #   use Rack::Throttle::Minute, :max => 100
  #
  class Minute < TimeWindow
    ##
    # @param  [#call]                  app
    # @param  [Hash{Symbol => Object}] options
    # @option options [Integer] :max   (60)
    def initialize(app, options = {})
      super
    end

    ##
    def max_per_minute
      @max_per_hour ||= options[:max_per_minute] || options[:max] || 60
    end

    alias_method :max_per_window, :max_per_minute

    protected

    ##
    # @param  [Rack::Request] request
    # @return [String]
    def cache_key(request)
      [super, Time.now.strftime('%Y-%m-%dT%H:%M')].join(':')
    end
  end
end; end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
rack-throttle-0.4.0 lib/rack/throttle/minute.rb
viximo-rack-throttle-0.4.0 lib/rack/throttle/minute.rb