mulicheng wrote: > I also read a lot of information about pre-forking servers avoiding > problems for higher traffic sites as well. I can set that up with > WSGI or mod_python, but can I do that with the Reverse Proxy setup? > > Can somone point me to some docs on how to change the cherrypy setup > from a threaded environment to a forking environment?
I am not aware of a way to make CherryPy handle requests using a pre- forking method. You can do this with flup, but I have had terrible luck with it. The CherryPy server is threaded, which is okay as long as you don't plan on taking advantage of multiple processors on your server. In order to scale up with those extra processors, just start an extra instance for each processor, or even extra instances on more servers, and then configure your lighttpd or apache to load balance using those instances. -- Jonathan LaCour http://cleverdevil.org --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

