-
-
Notifications
You must be signed in to change notification settings - Fork 2
Implement Leaky Bucket Algorithm #54
Copy link
Copy link
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requesttestingRequires tests to be created or modifiedRequires tests to be created or modified
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requesttestingRequires tests to be created or modifiedRequires tests to be created or modified
Implement
LeakyBucketclass per the spec in #50. The implementation should pass the tests written in #52The LeakyBucket algorithm works similarly to TokenBucket except that requests are processed at a fixed rate. The algorithm is usually implemented with a FIFO queue and works as follow: