I'm running django on uwsgi using the following command
uwsgi --master --cheap --idle 60 --http-socket :8084 --wsgi-file /var/django/mysite/django.wsgi
Typically my processes sit at around 10mb each, but I have seen them sitting at around half a MB. My question is, does uwsgi drop the processes down to an even cheaper mode when the server is running out of memory? If anyone can explain exactly how --cheap and --idle work, that would be much appreciated.