|
|
|
|
|
by zie
3109 days ago
|
|
The problem here is, it depends on WHY you are rate limiting. If it's just to balance so you don't overload your backends, then absolutely this is a great way to do it. If however you are trying to limit client(s) because the service is an authentication gateway for instance, then you want to limit user/pass requests to X number then concurrency limiting isn't a good way to do that. So you may need both, depending on your use-cases, so it's not a one-size fits all solution. |
|
Wouldn't that just be rate limiting by client IP though?