Hacker News new | past | comments | ask | show | jobs | submit login

This is very interesting, but I don't think comparing it to paste is valid. Paste is more meant as a development server, is it not?



No, not at all. Well, people do use it for development, but it's pretty much the recommended deployment option for several Python web frameworks, including Pylons.


Not true. Production deployments in Pylons are primarily done with mod_wsgi behind apache or in some cases uwsgi behind nginx.

Paste is generally not recommended outside of development purposes.


http://pylonshq.com/docs/en/1.0/deployment/#deploying-the-ap...

"There are lots of ways of deploying an application, one of which is to use the paster serve command which takes the configuration file that has already been used to setup the application and serves it on a local HTTP server for production use."


I've spent a good year developing with Pylons and this question of recommended production setup comes up about once every couple months in the official mailing list. Paste is considered by far the worst option in terms of performance, which is why most devs go with Apache/mod_wsgi. Nobody recommends Paste. Some (in my case) deployed with nginx/uwsgi.


The official docs recommend Paste. We've had apps in production running on Paste since 2007. At the time, neither mod_wsgi or uwsgi were around. Certainly it may not be the best way to run in production, but it's not for development only.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: