Concept Flow - Why rate limiting protects services
Client sends requests
Rate Limiter checks request count
Under limit
Process request
Send response
End
The rate limiter checks each request count from a client and either allows processing if under the limit or rejects if over, protecting the service.