How to handle large number of simultaneous connections to the server?
How to handle large number of simultaneous connections to the server(in Python)?
(which of the options are correct)
1)Create a separate thread for each new connection
2)Processes and threads is not necessary, python will automatically handle all the connections
3)Create a separate process for each connection
4)create a process pool and separate threads for each connection
2 answers
a large number of simultaneous connections to the server
not compatible cPython
Find more questions by tags Sockets