How does a Rate Limiter work?
The basic premise of a rate limiter is quite simple.
On a high level, you count the number of requests sent by a particular user, an IP address, or even a geographic location.
If the count exceeds the allowable limit, you disallow the request.
However, there are sev...
Jan 01, 2024