I was reading through here: https://code.google.com/p/modwsgi/wiki/ReloadingSourceCode
We have a python app hosted over a wide array of load-balanced servers, and sometimes it takes a long time for a request to come into a server that has a low priority in the load balancer. Meaning we may a really long wait time (while that server's wsgi daemon spins up) quite a long time after a deploy.
I have a fix for this when we actually deploy, but we also have automatic apache (graceful) restarts on the server array. Is restarting apache the same thing as touching my wsgi file ? Does wsgi wait until a request comes into that particular daemon to compile and spin up or does it autoload on apache restart ?