Class: Rack::Throttle::Interval
- Defined in:
- lib/rack/throttle/limiters/interval.rb
Overview
This rate limiter strategy throttles the application by enforcing a minimum interval (by default, 1 second) between subsequent allowed HTTP requests.
Instance Attribute Summary
Attributes inherited from Limiter
Instance Method Summary collapse
-
#allowed?(request) ⇒ Boolean
Returns ‘true` if sufficient time (equal to or more than #minimum_interval) has passed since the last request and the given present `request`.
-
#initialize(app, options = {}) ⇒ Interval
constructor
A new instance of Interval.
-
#minimum_interval ⇒ Float
Returns the required minimal interval (in terms of seconds) that must elapse between two subsequent HTTP requests.
-
#retry_after ⇒ Float
Returns the number of seconds before the client is allowed to retry an HTTP request.
Methods inherited from Limiter
#blacklisted?, #call, #restricted_url?, #whitelisted?
Constructor Details
#initialize(app, options = {}) ⇒ Interval
Returns a new instance of Interval.
18 19 20 |
# File 'lib/rack/throttle/limiters/interval.rb', line 18 def initialize(app, = {}) super end |
Instance Method Details
#allowed?(request) ⇒ Boolean
Returns ‘true` if sufficient time (equal to or more than #minimum_interval) has passed since the last request and the given present `request`.
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/rack/throttle/limiters/interval.rb', line 29 def allowed?(request) t1 = request_start_time(request) t0 = cache_get(key = cache_key(request)) rescue nil allowed = !t0 || (dt = t1 - t0.to_f) >= minimum_interval begin cache_set(key, t1) allowed rescue StandardError => e allowed = true # If an error occurred while trying to update the timestamp stored # in the cache, we will fall back to allowing the request through. # This prevents the Rack application blowing up merely due to a # backend cache server (Memcached, Redis, etc.) being offline. end end |
#minimum_interval ⇒ Float
Returns the required minimal interval (in terms of seconds) that must elapse between two subsequent HTTP requests.
59 60 61 |
# File 'lib/rack/throttle/limiters/interval.rb', line 59 def minimum_interval @min ||= (@options[:min] || 1.0).to_f end |
#retry_after ⇒ Float
Returns the number of seconds before the client is allowed to retry an HTTP request.
50 51 52 |
# File 'lib/rack/throttle/limiters/interval.rb', line 50 def retry_after minimum_interval end |