Class: Chokepoint::Daily

Inherits:
TimeWindow show all
Defined in:
lib/chokepoint/daily.rb

Overview

This rate limiter strategy throttles the block by defining a maximum number of allowed calls per day (by default, 86,400 requests per 24 hours, 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 calendar day. This means that the throttling counter is reset at midnight (according to the local timezone) every night.

Examples:

Allowing up to 86,400 requests per day

Chokepoint::Daily.new('activity').throttle do ... end

Allowing up to 1,000 requests per day

Chokepoint::Daily.new('activity', :max => 1000).throttle do ... end

Instance Attribute Summary

Attributes inherited from Limiter

#name, #options

Instance Method Summary collapse

Methods inherited from TimeWindow

#allowed?

Methods inherited from Limiter

#allowed?, #blacklisted?, #throttle, #whitelisted?

Constructor Details

#initialize(name, options = {}) ⇒ Daily

Returns a new instance of Daily.

Parameters:

  • name (String)
  • options (Hash{Symbol => Object}) (defaults to: {})

Options Hash (options):

  • :max (Integer) — default: 86400


24
25
26
# File 'lib/chokepoint/daily.rb', line 24

def initialize(name, options = {})
  super
end

Instance Method Details

#max_per_dayObject Also known as: max_per_window



29
30
31
# File 'lib/chokepoint/daily.rb', line 29

def max_per_day
  @max_per_hour ||= options[:max] || 86_400
end