Search code examples
algorithmthrottlingdebouncing

What is the general term for algorithms that handle receiving requests?


Stuff like debouncing, the leaky bucket algorithm, throttling, etc.

I really want to know more about these and I want to find similar algorithms that handle receiving multiple requests at a time in a server.


Solution

  • The algorithms you mentioned are used for rate limiting.