I am making a website and am running into an issue with website cache for my users. I develop my website and have set chrome developer tools to disable cache for my website for development. The issue is when i release a new change to prod all my users don't get the update because of their browser cache. When i delete the cache for my website manually on a friends computer it works but i obviously cant expect everyone to do this to get the new updates. Is there anyway for me to get around this with versioning or something? i have looked around but cant seem to find anything.
edit: i know i can prevent caching at all but i don't want to completely prevent caching that seems like a bad design
What are the resources that are being cached? I suspect js/css files, a good way to handle this is to add a query param with a version to the path of those resources in order to force the browser to load the new file if the version changed, something like this:
And when you release a new update of your website, replace the version as follows:
The browser will thing that the file is a new file and it will update the cache. Hope this helps.
In order to disable html caching, you can add a metatag to your file as follows:
But this will entirely disable caching of html files that have this metatag, I don't think there is a way to handle this as easily as with js/css files, you can set the metatag to refresh the html in a future date though. Here is an article describing how to use that metatag if you need more info:
http://www.metatags.info/meta_http_equiv_cache_control