Re: Thread's, async_chat and asyncore

2005-10-05 Thread Jos
I will take a look at it, thanks! jos -- http://mail.python.org/mailman/listinfo/python-list

Re: Thread's, async_chat and asyncore

2005-10-04 Thread Matt Hammond
Hi Jos, Have you looked at Kamaelia? Its a project I'm involved in to create a framework for highly concurrent systems, geared particularly for suitability for network server/client applications. A system is built out of many small components, each with their own pseudo-thread of execution

Re: Thread's, async_chat and asyncore

2005-10-03 Thread Jos
Gaaa, i just did a run with 999 threads pushing data, and i'm getting "IndexError: deque" problems, so i'm guessing its _not_ thread safe... Bummer. jos -- http://mail.python.org/mailman/listinfo/python-list

Thread's, async_chat and asyncore

2005-10-03 Thread Jos
Hello. I'm using the asyncore and _chat modules to create a network server. I also have, running in a separate thread(s), a "producer" which needs to "push" data onto the network connection(s). (This is all for a multi-player game server, so the threads would be individual games, that need to upda