On 7 May 2009, at 17:21, Alex wrote: > Is it ok to use webpy web server for deployment? Django, for example > does not recommend to use their development server for real-world > exposure, I just want to make sure it is not the case with web.py. > > Bests, > Alex
The built-in web server comes from CherryPy, which I hear is fairly reliable and scalable as a deployment server. The docstring describes it as a "high-speed, production ready" server. I'd say give it a try; since it's all WSGI, it's very easy to quickly switch it over to another gateway (I prefer mod_wsgi on Apache) if you need to. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" 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/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
