Tagged Questions
8
votes
6answers
3k views
Writing a socket-based server in Python, recommended strategies?
I was recently reading this document which lists a number of strategies that could be employed to implement a socket server. Namely, they are:
Serve many clients with each thread, and use ...
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 ...
6
votes
6answers
1k views
How to scale a TCP listener on modern multicore/multisocket machines
I have a daemon to write in C, that will need to handle 20-150K TCP connections simultaneously. They are long running connections, and rarely ever tear down. They have a very small amount of data ...
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 ...
0
votes
2answers
43 views
high performance sockets library for windows
I saw a very nice library for sockets in POCO library.
This uses a "classic" approach that works on both linux and windows systems, mainly SELECT based approach.
I would like to know if there is ...