Tagged Questions
7
votes
9answers
3k views
Java Socket Programming does not work for 10,000 clients
I can create multiple threads for supporting multi-client feature in socket programming; that's working fine. But if 10,000 clients want to be connected, my server cannot create so many threads.
How ...
2
votes
3answers
1k views
Readings on writing high-performance server in Java
Could anyone please introduce books/papers/articles that I should read If I want to write a high-performance RPC server in Java, which handles large number of concurrent connections(C10K or over), is ...