简介:
Solution of how to disable Cache in Chromimum browser.
转载请注明出处


There's an option which does not appear in chromium's manual page --- "-disk-cache-dir".
This option specifies where the disk cache should be stored.
Hence, under Linux, we can set the disk-cache-dir to /dev/null. In that way, the cache will be disabled, and all contents will be read from the Internet directly.

Here is what the modified chromium-browser-chromium.desktop looks like:

[Desktop  Entry] 
Name=Chromium Type=Application 
Comment=Open-source version of Google Chrome web  browser 
Exec=chromium-browser %U --disk-cache-dir=/dev/null 2>/dev/null 
TryExec=chromium-browser 
Icon=chromium-browser
Categories=Network;WebBrowser; 
MimeType=text/html;text/xml;application/xhtml+xml;x-scheme-handler/http;x-scheme-handler/https;   



Why I need to disable file cache?
Well, on my machine, when chromium browser starts up, it keeps reading cache and take a long time to show the homepage.
So I decided to disable it.



Author:yangyingchao, 2011-07-30

相关文章:

  • 2022-12-23
  • 2021-11-17
  • 2021-06-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
  • 2021-07-18
猜你喜欢
  • 2021-11-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-15
  • 2021-05-18
  • 2022-02-09
相关资源
相似解决方案