You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
blockDuration option should be undefined by default, so 0 can be used to block keys forever.
Make sure RateLimiterQueue is created with default maxQueueSize even if it isn't set in options object, e.g. new RateLimiterQueue(memoryLimiter, {}) shouldn't result to maxQueueSize set to undefined.
Support for points set to 0 and never limit in this case. It is useful for atomic counters.
consider adjusting the cb of the different implementations to return asynchronously if tableCreated: true - its not consistent w/ the other times cb is called.
another better design would be to have private constructors and a factory method that returns a promise
animir
changed the title
Future major v3 notes
Future major v4 notes
Aug 29, 2023
animir
changed the title
Future major v4 notes
Future major v5 notes
Feb 13, 2024
animir
changed the title
Future major v5 notes
Future major v6 notes
Apr 25, 2024
blockDuration
option should be undefined by default, so0
can be used to block keys forever.RateLimiterQueue
is created with defaultmaxQueueSize
even if it isn't set in options object, e.g.new RateLimiterQueue(memoryLimiter, {})
shouldn't result tomaxQueueSize
set toundefined
.points
set to 0 and never limit in this case. It is useful for atomic counters.The text was updated successfully, but these errors were encountered: