On Sunday, March 9, 2014 4:46:56 AM UTC-7, Chris Withers wrote: > > Hi All, > > What are the things you should consider when deciding between waitress > and mod_wsgi when it comes to serving a pyramid app? >
It probably depends on your usage scenario. Waitress by itself would probably be the easiest thing to set up, but that's usually not recommended... but if you're only serving a few users, it probably doesn't matter. Waitress behind a proxy is the next easiest and is probably good enough if you don't need *super* high performance. For "serious" production apps, I like nginx+uwsgi (similar to apache+mod_wsgi in daemon mode). It's only slightly more work to configure than a reverse proxy setup. If you're managing multiple apps, uwsgi's emperor mode can be handy. I found mod_wsgi a bit more cumbersome than uwsgi, but not by much. On the other hand, uwsgi has a billion options to wade through, but I don't think most of them are relevant most of the time. -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pylons-discuss. For more options, visit https://groups.google.com/d/optout.
