> I also had lots of problems with "flup" for SCGI deployment, so we > wrote our own asyncore-based WSGI/SCGI server.
Hi, Mini thread-jack, but I recently wrote a server with asyncore and found it to be less than good as I couldn't get full network i/o because of the amount of time being spent in my dispatcher.handle methods. How did you get this to work? I ended up porting my code to something similar to Apache's prefork mpm, based on SocketServer, which works beautifully. The only difference is my parent and children talk to each other with sockets and not SHM (My app isn't actually a server - it's feed consumer, but I needed multiprocessing to fully utilise my bandwidth) Cheers -Rob --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears -~----------~----~----~----~------~----~------~--~---

