BlazeDS 中可能的最大并发连接数
仅使用远程服务的 BlazeDS 中可能的最大并发连接数是多少
What is the maximum number of concurrent connections possible in BlazeDS using only remoting service
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
远程调用是简单的 HTTP POST 调用...每个远程调用都将在应用程序服务器线程之一上执行。因此,最大并发连接数取决于您的服务器配置(线程池大小)。
Remoting calls are simple HTTP POST calls...every remote call is going to be executed on one of the application server threads. So the maximum number of concurrent connection will depends on your server configuration (the thread pool size).
如果我理解你所说的远程处理是什么意思,http代理? proxy-config.xml 文件中有一个位置可以设置最大连接数和每个客户端的最大连接数。如果您使用数据推送,BlazeDS 也可能存在问题,不仅仅是最大线程数,而且操作系统设置也可能会出现问题,例如可以打开的最大 FD 数。
If I'm understanding what you mean by remoting, the http proxy? There is a place to set max connections and max connections per client in the proxy-config.xml file. There may also be issues for the BlazeDS if you're using data push, not just the max number of threads, but there are OS settings that may come into question as well, like max number of FDs that can be opened.