I was migrated to a newer webfaction server and now uwsgi compiles. I first tried limiting to 64 MB of memory and 1 process:
uwsgi --http=127.0.0.1:port --pythonpath /user/web2py --module wsgihandler -d /user/uwsgi.log -t 20 --async 24 --ugreen --limit-as 64 -r --no-orphans -M -p 1 --touch-reload /user/uwsgireload.txt --reload-on-rss 50 But this lead to MemoryError's for my more database intensive pages. Then increased to 80 MB and the MemoryError's have stopped. Should this much memory really be needed, or is there likely a problem with web2py / my app? Richard