The maximum number of simultaneous connections is possible in BlazeDS

What is the maximum number of simultaneous connections possible in BlazeDS using only a remote service

+2


a source to share


2 answers


Remote calls are simple HTTP POST calls ... each remote call will be executed on one of the application server threads. Thus, the maximum number of concurrent connections will depend on your server configuration (thread pool size).



+2


a source


If I understand what you mean by deleting, http proxy? The proxy-config.xml file has room to set maximum connections and maximum connections per client. There can also be problems for BlazeDS if you are using push data, not only the maximum number of streams, but there are OS settings that can also be questioned, such as the maximum number of FDs that can be opened.



+1


a source







All Articles