Right now, if there is some excess amount of incoming requests, the extra requests are just dropped. Add a request queue to resolve this and store excess requests until they are able to be processed by the servers
- The queue should obviously be processed in a First In, First Out manner
- Optionally, provide configuration options for the queue size
Right now, if there is some excess amount of incoming requests, the extra requests are just dropped. Add a request queue to resolve this and store excess requests until they are able to be processed by the servers