Is there a way I can limit the number of concurrent connections to the Web Application running on my Apache Server.
My server version is Apache 2.2.11
Is there a way I can limit the number of concurrent connections to the Web Application running on my Apache Server.
My server version is Apache 2.2.11
Have a look at limitipconn module.
I'm not sure if it will useful to you but definitely worth a chance.
Maybe you can use the directives MaxClients and ListenBackLog
Although they apply to the concurrent access to the entire server, not only your application, and on a resource base.
我们完全构建了一个应用程序层的东西来存储、检查和限制可以同时登录的应用程序用户数的限制。
如果超过了,我们会将他们送到“候诊室”——就像一个魅力。
所以它都是由应用程序管理的——我们在一个集群中有多个 apache 服务器。
我们没有使用 Zend 集群的东西,IMO。