On Mon, 07 Sep 2009 19:22:17 -0700, ganesh wrote: > My application is a TCP server having multiple client connectons. C++ > PTHREADS are for each connected socket and the message received on the > socket is evaluated by python functions. If I use only one process level
Do you have to use threads? If you use a process per connection, rather than a thread, each process will have its own GIL. -- http://mail.python.org/mailman/listinfo/python-list