Introduction
When you work in a project where static files caching is enabled, sometimes you can face a problem with this page caching. I was working in a django project where static files are cached. So whenever I do one line modification in my static files, those changes will not be reflected in my Firefox browser. It's because browser is collecting those files from cache. Ideally, it should fetch it again if there are some changes in any static file.
So to deal with this problem, I disabled page caching in Firefox.
Steps to Disable Page Caching
Step 1: Type about:config
in your browsers address bar.
Step 2: It will redirect you to one confirmation page press "I will be careful" button.
Step 3: List of preference name will be shown to you with its value.
Step 4: Type "browser.cache.disk.enable
" in your search box to search this preference.
Step 5: Its value will be True
by default. Make it False
by double clicking on line item.
Step 6: Restart Firefox.
Step 7: Repeat steps 1-6 for preference "browser.cache.memory.enable
".