I need a way to handle multiple socket connections and keep the connection open (like JS socket.io do!).
I will have 20 clients (machines) and a list of servers, each client need to establish a connection with each server and I cannot support this with threading.
I already do this with a threading system but it will cost too much on my system.
My last try was with Asyncore but without success on my purpose.
All results I find uses a threading based system. Any suggestions?