> This is über cool. Thank you guys. > > One simple question: > > Can I setup a uWSGI cluster, route CPU-heavy requests to PyPy uWSGI, and > normal requests to CPython uWSGI? > > >
The internal routing subsystem make it really easy: route = ^/foo uwsgi:<address_of_pypy_server>... route = /^bar uwsgi:<address_of_another_pypy_server>... ...and so on There is the possibility to have both pypy and cpython in the same process, but currently it is disabled to avoid wrong bugreports -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
