is there any way to increase the cache size of google chrome in ubuntu 11.10 so that frequently visited pages load faster, im using a very-slow internet connection so i badly need this
13 Answers
Absolutely. An easy fix to this is to add the following argument to the command.
chromium-browser --disk-cache-size=nsay n is 500000000 this would be 500 MB
You can check to make sure it increased it by typing the following in your browser and then looking at the Max Size value.
chrome://net-internals/#httpCache 2 Start chrome with the following option:
--disk-cache-size=nWhere n is the cache size limit in bytes.
Chrome now has two startup switches that you can use --disk-cache-dir and --disk-cache-size.
Simply close Chrome, right-click your Chrome shortcut, click Properties, and then in the field labeled "Target:", make it look something like this:
"...chrome.exe" --disk-cache-dir="CACHE_DIR" --disk-cache-size=NWhere CACHE_DIR is the new cache location, and N is the cache size limit, in bytes.
Use whichever switch you need, or both. Keep in mind, however, that these features may not be completely stable yet. But you probably shouldn't have any problem with using them.
And to anyone who's interested, I caught gander of the existence of these switches directly from a source code file for Chrome.
3