-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
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
Add throtteling to request #190
Comments
Will the max of 5req/sec be applied to each user individually trying to access a certain route, or the route itself? |
Per user (IP) accessing a specific route. |
Thats cool! In that case also reminds that in most cases the app runs behind a reverse proxy which has to pass IP headers. |
Yes, you're right. We should keep that in mind. Are there alternatives? |
The application has access to (session) cookies for sure, although its not a reliable basis for throttling. So, the application must be sure its provided with an IP address, or its not able to distinguish between users. |
Moved to 4.0.0 as this requires some new feature from 4.0.0 |
Add an additonal parameter which enables throtteling of request, e.g. max 5 req/sec.
The text was updated successfully, but these errors were encountered: