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 ...