> > A trivial 'hello world' application for various python web frameworks > (bottle, django, flask, pyramid, web.py, wheezy.web) hosted in uWSGI > CPython 2.7 vs Gunicorn PyPy 1.9: > > http://mindref.blogspot.com/2012/09/python-fastest-web-framework.html > > Surprisingly PyPy doesn't make `magic` in template rendering: > > http://mindref.blogspot.com/2012/07/python-fastest-template.html > > Comments or suggestions are welcome. > > Thanks. > > Andriy Kornatskyy >
You will get the same amount of performance 'degradation' in uWSGI+pypy. PyPy shines on CPU-heavy long tasks, where JIT can be heavily abused, and webapps rarely fall in that category. Things will change (soon or later), PyPy team is working hard on various areas. -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
