Do you use a single API Call Processing Server? Worse yet, do you have all of your web servers making individual API calls all on their own? Just a single API transaction takes 9 steps to complete through TCP, and your system is getting bogged down with delays from TCP communications. The internet runs on HTTP, and HTTP runs on TCP. You could still use websockets to keep some of the overhead low. However, the TCP/IP stack is just one of many bottlenecks in your infrastructure. Did you know that you don't need to collect the response from every API call you make? What if you could always speak...
Do you use a single API Call Processing Server? Worse yet, do you have all of your web servers making individual API calls all on their own? Just a si...