Home > other >  Max parallel http requests in Chrome
Max parallel http requests in Chrome

Time:04-28

Currently Chrome has a limit of 6 connections per host name, and a max of 10 connections.

What happens when the number of http requests exceeds the limit in Chrome?

The extra http requests will be queued or they will fail?

CodePudding user response:

If the connection limit is reached, further requests will wait until connections free up.

  • Related