- Apache eats memory and does not use epoll, you cannot load balance, you need web2py on the same host so it does scale not well. - uwsgi + nginx could be as good but for sure it is a bit harder to setup since it has a zillion of features, scales very well.
uwsgi has a little layer above python so: nginx <-socket-> uwsgi+python scgi is: nginx <-socket-> python that scgi slice uses a scgi implementation with forked workers instead of threads so it scales smoothly on multicores. You can use different implementations with pure python modules or C choose the one you like or implement. mic 2011/9/13 Vasile Ermicioi <[email protected]>: > or compared to nginx + uwsgi (uwsgi protocol is built in nginx since 0.8+ > version)

