If a web server can handle let’s say 5000 concurrent connections, does this translate into 5000 concurrent users and also mean that no more than 5000 total users can be online at any given time?
If a web server can handle let’s say 5000 concurrent connections, does this translate
Share
That depends on how you define an “online user” and how exactly the system works.
With a normal web page, the user is only connected to the server while downloading the page(And up to 15 seconds more if keep alive is enabled on the server).
So if i go to your website, and use one hour to read the content of a page, you may say I am online on the site for an hour, but I am only really connected to the server for the few seconds it take me to download the page. I am not connected in all the time it takes me to read the page.
So 5000 concurrent connections, mean that the server can send data to 5000 clients at the same time. No more. No less.