We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like to implement a rate limiter based on the time usage of actions.
In a time interval (maybe 15 minutes):
500
verified
2000
In the above scenario, we can serve around 300 users at once:
$(15 \times 60) \div (0.5 + 2) = 360 \Rightarrow 300$ (We need some resources to do checks and other chores)
Since we do not have extra machines to do scaling and we haven't thought about it, a rate limiter would be necessary.
I do believe that we can scale, but more research must be done.
Feel free to discuss the topic, thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I would like to implement a rate limiter based on the time usage of actions.
In a time interval (maybe 15 minutes):
500
ms credits.verified
trait, then it gets2000
ms extra credits.In the above scenario, we can serve around 300 users at once:
Since we do not have extra machines to do scaling and we haven't thought about it, a rate limiter would be necessary.
Feel free to discuss the topic, thanks.
The text was updated successfully, but these errors were encountered: