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
Price Plans per product may sell increased Rate Limits as a feature which needs to be taken in to account
Currently the perPeriod/periodSeconds would be shared between multiple instances of the middleware, this should be configurable so you can apply different rate limiters on different endpoints.
To meet the requirements of the quote above you would need to check the session to see if they had a higher rate limit, so perhaps it should change to use a function to return the perPeriod/perSeconds so it can be different depending on the session similar to the GetKey callback.
The text was updated successfully, but these errors were encountered:
jrdnull
changed the title
RateLimiter: perPeriod/periodSeconds should be configurable per middleware
RateLimiter: perPeriod/periodSeconds should be configurable per middleware/request
Apr 17, 2018
Anyone have a good idea on how to do this without destroying the database? If the account level needs to be checked then it means that we are authing before running the rate limit check which would mean that a malicious actor could send large numbers of requests causing spikes on our infrastructure.
I suppose installations should be cached is the simplest answer.
Brought up in the unified api doc:
Currently the perPeriod/periodSeconds would be shared between multiple instances of the middleware, this should be configurable so you can apply different rate limiters on different endpoints.
To meet the requirements of the quote above you would need to check the session to see if they had a higher rate limit, so perhaps it should change to use a function to return the perPeriod/perSeconds so it can be different depending on the session similar to the GetKey callback.
The text was updated successfully, but these errors were encountered: