Hello Guys,
We are using Web-Dev Module to handle API requests.
- We have 3 Lines on the Floor, Each line posts us data every 3 seconds through an API.
How can we have load Balancer ?
Any suggestions? Thanks in Advance.
Hello Guys,
We are using Web-Dev Module to handle API requests.
How can we have load Balancer ?
Any suggestions? Thanks in Advance.
the requests are queued and processed in sequence, that's what the server is supposed to do, serve client requests from a thread pool, there is nothing like same time! However each http request has an overhead of about 2kb in addition to data sent/received. But if your application required that much response time, you have no other option.