Github pages sets very aggressive cache headers (Cache-Control: max-age=86400
1 day, Expires
1 month ahead) on all served content.
If you update your pages and push to github, people revisiting the pages who have already got cached copies will not get the new pages without actually cleaning their browser cache.
How can a script running in a page determine that it is stale and force an update?
The steps might be:
window.location
for github.com/
$id$
. So how do you know what version you are?window.location.reload(true)
doesn't work in Safari/Chrome, for example...So its solve-these-steps; of course there may be another way?
Note: It can take up to 10 minutes for changes to your site to publish after you push the changes to GitHub. If you don't see your GitHub Pages site changes reflected in your browser after an hour, see "About Jekyll build errors for GitHub Pages sites."
GitHub Pages sets a max-age of 10 minutes, which means your browser will not check for updates 10 minutes since the last retrieval of the page.
Even if the repository is private, the site is still publicly available on the internet — so the developer should always check for any sensitive data before deployment. Naturally, sending sensitive data (e.g. passwords or credit card information) is also unsafe.
To have a better control of the caching of your website you can use the HTML5 cache manifest. See:
You can use the window.applicationCache.swapCache()
to update the cached version of your website without the need for manually reloading the page.
This is a code example from HTML5 Rocks explaining how to update users to the newest version of your site:
// Check if a new cache is available on page load. window.addEventListener('load', function(e) { window.applicationCache.addEventListener('updateready', function(e) { if (window.applicationCache.status == window.applicationCache.UPDATEREADY) { // Browser downloaded a new app cache. // Swap it in and reload the page to get the new hotness. window.applicationCache.swapCache(); if (confirm('A new version of this site is available. Load it?')) { window.location.reload(); } } else { // Manifest didn't changed. Nothing new to server. } }, false); }, false);
To avoid some confusion I'll add that GitHub sets the correct HTTP headers for cache.manifest files:
Content-Type: text/cache-manifest Cache-Control: max-age=0 Expires: [CURRENT TIME]
so your browser knows that it's a cache manifest and that it should always be checked for new versions.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With