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

Time:11-17

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.

CodePudding user response:

The algorithms you mentioned are used for rate limiting.

  • Related