java Tigase 性能
为什么 Tigase Server 可以达到这么多连接? http://www.tigase.org/content/tigase -load-tests-again-500k-user-connections
假设使用 Netty 可以达到 100,000 个连接吗?
Why Tigase Server can reach so many connections? http://www.tigase.org/content/tigase-load-tests-again-500k-user-connections
Could I reach 100,000 connections hypothetically with Netty?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经让 Netty 接受了 100k 与 Netty 的连接。
理论上,一个socket是由src_ip,src_port,dst_ip,dst_port,protocol来标识的。
由于端口在范围 (0-65k) 内,每个客户端 IP 与服务器的连接数限制为 65k,因此,如果您有两个 IP 地址(两个客户端主机),您可以轻松达到并发数连接。
I've made Netty accepted 100k connection with Netty.
In theory, a socket is identified by src_ip,src_port,dst_ip,dst_port,protocol.
Because port is in range (0-65k), each client IP is limited about 65k connections to server, so if you have two ip address(two clients host) you can easily reach such that number of concurrent connections.