Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 2 down vote accepted

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.