0

How can I find the maximum number of clients that can connect to my web service at the same time?

Is there any way to know how many clients can connect to the web service at the same time?

What is the limitation of number of connections to the web service depend on?

1 Answers1

0
  1. using ab - the apache benchmarking tool, or any load testing service in the internet (plenty of them)
  2. this question is pretty much the same as the first one. yes, there is.
  3. this depends on the web server configuration, on the memory amount and the free memory amount in the server, on the internet connaction bandwidth.

What is more important - it's not the "number of clients that can connect" that matters, but the number that your setup can handle, and this is not the same thing. If your setup/application is slow - clients will start stacking on each other, filling the server's sockets, queues and etc. You need to have the application fast enough to minimize the time the client is connected to it.

drookie
  • 8,051
  • 1
  • 17
  • 27