Answer the question
In order to leave comments, you need to log in
What is the actual number of simultaneous connections per domain allowed?
According to the documentation, browsers seem to allow no more than 5 - 7 simultaneous connections per domain, but in practice I did not notice problems with either 10 connections or 20 connections. So what is the actual number of connections allowed by browsers?
At the same time, I have two very important questions:
1. Is the limit on the number of connections per domain valid only within one tab or does it apply to the entire browser?
2. Is there a limit on the number of connections inside the extension background process?
Answer the question
In order to leave comments, you need to log in
6 per domain, 20 per websockets
// Default to allow up to 6 connections per host. Experiment and tuning may
// try other values (greater than 0). Too large may cause many problems, such
// as home routers blocking the connections!?!? See http://crbug.com/12066.
//
// WebSocket connections are long-lived, and should be treated differently
// than normal other connections. Use a limit of 255, so the limit for wss will
// be the same as the limit for ws. Also note that Firefox uses a limit of 200.
// See http://crbug.com/486800
int g_max_sockets_per_group[] = {
6, // NORMAL_SOCKET_POOL
255 // WEBSOCKET_SOCKET_POOL
};
what is the actual number of connections allowed by browsers?
about:config
. network.http
. As far as I remember, all or at least most of the settings will have names starting in this way. about:config
, it means that it uses the default value, and to change it, the parameter must first be created.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question