Why upgrade to HTTP 2?
by Stuartpublished onHTTP 1 supports 6 concurrent requests to a single subdomain.
That means that when you make 7 API requests 1 will be blocked until a socket becomes available.
HTTP2 addresses this and is supported in Windows Server 2016 and Windows 10.
If you are stuck with HTTP1, you have a couple of options:
- Improve the performance of long-running individual Ajax requests (obviously)
- Setup subdomain sharding and send (XHR) requests to them
Comments