I installed Django, Nginx and FastCGI on one of my servers. This is my development server, and I have a very difficult time caching. Every time I make changes, I have to restart the whole server to see the actual change. Rebooting the Nginx process did not help.
So maybe Django and / or FastCGI do caching. I also looked at settings.py options and there is no caching in Django.
What is the best way to make sure that when you change the page code, caching automatically gets reset? Your help is greatly appreciated.
source
share