bharel / asynciolimiter

A simple yet efficient Python AsyncIO rate limiter.
MIT License
17 stars 2 forks source link

Describe Leaky bucket algorithm #4

Open bharel opened 2 years ago

bharel commented 2 years ago

Add some clarification that the regular Limiter is equivalent to 'leaky bucket as a queue' algorithm with an infinite queue.

Add clarification that the LeakyBucketLimiter is equivalent to both the 'leaky bucket as a limiter' algorithm, and the 'Token Bucket' algorithm.

Continuance of #3.