Tagged Questions
5
votes
9answers
759 views
What are the theoretical performance limits on web servers?
In a currently deployed web server, what are the typical limits on its performance?
I believe a meaningful answer would be one of 100, 1,000, 10,000, 100,000 or 1,000,000 requests/second, but which ...
3
votes
5answers
475 views
What socket-based model should I use for many simultaneous connections?
I need to know what socket-based model is the best for servers with many simultaneous connections, exactly as in an MMORPG server.
I've read about c10k, but what should I use, if for example my ...
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 ...