Sha256: 17aec8ce41a6035051eec223daf78c451dca29cecbc127e9995dcb55eacc0c14
Contents?: true
Size: 847 Bytes
Versions: 1
Compression:
Stored size: 847 Bytes
Contents
require 'rubygems' require 'glutton_ratelimit' puts "Maximum of 12 executions every 5 seconds (Bursty):" rl = GluttonRatelimit::BurstyTokenBucket.new 12, 5 start = Time.now 25.times do |n| # BurstyTokenBucket will allow for a full burst of executions followed by a pause. rl.wait puts "#{n+1} - #{Time.now - start}" # Simulating a constant-time task: sleep 0.1 end # The 25th execution should occur after 10 seconds has elapsed. puts "Maximum of 3 executions every 3 seconds (Averaged):" rl = GluttonRatelimit::AveragedThrottle.new 3, 3 start = Time.now 7.times do |n| # AverageThrottle will attempt to evenly space executions within the allowed period. rl.wait puts "#{n+1} - #{Time.now - start}" # Simulating a 0 to 1 second random-time task: sleep rand end # The 7th execution should occur after 6 seconds has elapsed.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
glutton_ratelimit-0.1.0 | examples/simple_manual.rb |