is there any way other than dev-tools to disable caching in chromium. i need to permantly disable te cahing for a specific project. this is not for general browsing, it is for an automated infomation system. the source of the pages gets udated regualry, but chromium always refreshes from cache. there is no human interaction. i have tried populating http header from the server side, but these are ignored. i have tried many options suggested on search results but none have been succesful. its seem that chromium will cache everything like it or not. any help would be apprieciated
--
--
Chromium Discussion mailing list: chromium...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-discuss
---
You received this message because you are subscribed to the Google Groups "Chromium-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-discuss+unsubscribe@chromium.org.
is there any way other than dev-tools to disable caching in chromium. i need to permantly disable te cahing for a specific project. this is not for general browsing, it is for an automated infomation system. the source of the pages gets udated regualry, but chromium always refreshes from cache. there is no human interaction. i have tried populating http header from the server side, but these are ignored. i have tried many options suggested on search results but none have been succesful. its seem that chromium will cache everything like it or not. any help would be apprieciated
--
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
this didnt work. pages still cached
I then came across references to application-cache and manifests. not sure this was what i needed, but tried it anyway. i created a manifest.appcacheand referenced it with <html manifest="manifest.appcache">CACHE MANIFEST
# 2012-02-21 v1.0.0
CACHE:
NETWORK:
*
this also didnt work,
on other infomation, i tried running chromium in incognito mode. this definatly stopped the storage of cache on the flash medium,
but it kept a memory based cache while running, so pages didnt update on refresh
following more searching, i came across reference to putting the cache-control in the http headers. i did this using PHP header()header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', FALSE);header('Pragma: no-cache');header("Cache-Control: max-age=1");
this didnt work either. pages were still caching. and no updates were showing.
to allow me to continue coding and havethe updating, i added a unique-id to the get statement calling each page to make the browser load from the server every time.
this was a crude fix to allow me to continue my testing, but not a long term solution as the cache on disk was now being written to more than ever. a combination of this
and incognito could work for me, but its more of a bodge, so would rather not use it in production system.
this is when i posted my very brief cry for help... i should have spent more time detailing what i had done and i do apoloigise for that.
anyhow. triggered by your reply Primiano Tucci. i set about using dev-tools to check the headers that i was receiving. it seems that only the last http cache-control header was being recieved.
so i have cleared out all cache control setting from my source pages, including meta-tags and menifests and just put in 1 cache-control http header with te value no-store.this now works for updating every page on refresh. im still concerned that these pages are being written to cache on disk, as they appear in history. is there a way to view stored/cached files in dev-toolsheader("Cache-Control: no-store");
to allow me to continue coding and havethe updating, i added a unique-id to the get statement calling each page to make the browser load from the server every time.
this was a crude fix to allow me to continue my testing, but not a long term solution as the cache on disk was now being written to more than ever. a combination of this
and incognito could work for me, but its more of a bodge, so would rather not use it in production system.
this is when i posted my very brief cry for help... i should have spent more time detailing what i had done and i do apoloigise for that.
anyhow. triggered by your reply Primiano Tucci. i set about using dev-tools to check the headers that i was receiving. it seems that only the last http cache-control header was being recieved.
so i have cleared out all cache control setting from my source pages, including meta-tags and menifests and just put in 1 cache-control http header with te value no-store.this now works for updating every page on refresh. im still concerned that these pages are being written to cache on disk, as they appear in history.header("Cache-Control: no-store");
is there a way to view stored/cached files in dev-tools
is there any way other than dev-tools to disable caching in chromium. i need to permantly disable te cahing for a specific project. this is not for general browsing, it is for an automated infomation system. the source of the pages gets udated regualry, but chromium always refreshes from cache. there is no human interaction. i have tried populating http header from the server side, but these are ignored. i have tried many options suggested on search results but none have been succesful. its seem that chromium will cache everything like it or not. any help would be apprieciated
--
--
Chromium Discussion mailing list: chromium...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-discuss
---
You received this message because you are subscribed to the Google Groups "Chromium-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-discu...@chromium.org.