Possible Duplicate:
Django, Nginx, FastCGI caching problem when I change code
Currently I use Nginx + fastcgi to run Django applications. After I change the source code of a Python file in a web application, I always see the old version of application from browser. It seems that it doesn't include my changes. Only after I restart the fastcgi process of Django, my changes take effect. Is there a way to make my changes take effect immediately without restart any processes? (I run Nginx and Python in Windows for debugging.)