web server maximum number of users apache can handle?

后端 未结 4 583
余生分开走
余生分开走 2020-12-13 11:03

My question is what is the maximum number of users that Apache webserver 2.2.2 can handle, i have a website which sometimes gets over 300+ concurrent users, however apache d

4条回答
  •  -上瘾入骨i
    2020-12-13 11:37

    See this guide for an overview: http://www.devside.net/articles/apache-performance-tuning

    It's all mostly about the Apache MPM that you have selected (thread based, or process based) and it's settings.

    Then you need to match it up with the KeepAlive settings (I use a thread based MPM and hence set KeepAlives to On and for 3 seconds).

    Are you using Apache under Linux or Windows? Which MPM?

提交回复
热议问题