How do I increase cache size in Chrome?
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
10
down vote
favorite
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
google-chrome cache
add a comment |Â
up vote
10
down vote
favorite
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
google-chrome cache
I'm going to stick my neck out here but I suspect that increasing the cache size over the default may not significantly improve things. What's more, pages often have fresh content and rotate ads thereby diminishing the utility of cache. You may have more luck in getting pages to "load" faster by blocking unnecessary items from downloading but that's another issue not relevant to askubuntu.
â user25656
Feb 15 '12 at 15:22
add a comment |Â
up vote
10
down vote
favorite
up vote
10
down vote
favorite
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
google-chrome cache
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
google-chrome cache
google-chrome cache
edited Oct 27 '12 at 4:19
imz -- Ivan Zakharyaschev
3233525
3233525
asked Feb 15 '12 at 13:55
![](https://i.stack.imgur.com/EubHp.jpg?s=32&g=1)
![](https://i.stack.imgur.com/EubHp.jpg?s=32&g=1)
kernel_panic
3,914163777
3,914163777
I'm going to stick my neck out here but I suspect that increasing the cache size over the default may not significantly improve things. What's more, pages often have fresh content and rotate ads thereby diminishing the utility of cache. You may have more luck in getting pages to "load" faster by blocking unnecessary items from downloading but that's another issue not relevant to askubuntu.
â user25656
Feb 15 '12 at 15:22
add a comment |Â
I'm going to stick my neck out here but I suspect that increasing the cache size over the default may not significantly improve things. What's more, pages often have fresh content and rotate ads thereby diminishing the utility of cache. You may have more luck in getting pages to "load" faster by blocking unnecessary items from downloading but that's another issue not relevant to askubuntu.
â user25656
Feb 15 '12 at 15:22
I'm going to stick my neck out here but I suspect that increasing the cache size over the default may not significantly improve things. What's more, pages often have fresh content and rotate ads thereby diminishing the utility of cache. You may have more luck in getting pages to "load" faster by blocking unnecessary items from downloading but that's another issue not relevant to askubuntu.
â user25656
Feb 15 '12 at 15:22
I'm going to stick my neck out here but I suspect that increasing the cache size over the default may not significantly improve things. What's more, pages often have fresh content and rotate ads thereby diminishing the utility of cache. You may have more luck in getting pages to "load" faster by blocking unnecessary items from downloading but that's another issue not relevant to askubuntu.
â user25656
Feb 15 '12 at 15:22
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
11
down vote
accepted
Absolutely. An easy fix to this is to add the following argument to the command.
chromium-browser --disk-cache-size=n
say 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
Cf. <superuser.com/a/418591/65570> and the links there, which also mentions--media-cache-size
.
â imz -- Ivan Zakharyaschev
Oct 27 '12 at 4:27
add a comment |Â
up vote
2
down vote
Start chrome with the following option:
--disk-cache-size=n
Where n
is the cache size limit in bytes.
1
Does this PERMANENTLY increase the Cache size or do i need to do this everytime i use chrome?
â kernel_panic
Feb 16 '12 at 14:34
1
it's one time. if you want it permanentely edit you chrome launcher.
â Rinzwind
Feb 16 '12 at 14:46
add a comment |Â
up vote
2
down vote
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=N
Where 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.
1
You should alter this for a sollution for Ubuntu not windows.
â Rinzwind
Feb 15 '12 at 15:12
And a slightly more aesthetic presentation of switches can be found here: List of Chromium Command Line Switches
â user25656
Feb 15 '12 at 16:06
where is chrome shortcut? where is prpperties?
â kernel_panic
Feb 16 '12 at 14:33
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
11
down vote
accepted
Absolutely. An easy fix to this is to add the following argument to the command.
chromium-browser --disk-cache-size=n
say 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
Cf. <superuser.com/a/418591/65570> and the links there, which also mentions--media-cache-size
.
â imz -- Ivan Zakharyaschev
Oct 27 '12 at 4:27
add a comment |Â
up vote
11
down vote
accepted
Absolutely. An easy fix to this is to add the following argument to the command.
chromium-browser --disk-cache-size=n
say 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
Cf. <superuser.com/a/418591/65570> and the links there, which also mentions--media-cache-size
.
â imz -- Ivan Zakharyaschev
Oct 27 '12 at 4:27
add a comment |Â
up vote
11
down vote
accepted
up vote
11
down vote
accepted
Absolutely. An easy fix to this is to add the following argument to the command.
chromium-browser --disk-cache-size=n
say 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
Absolutely. An easy fix to this is to add the following argument to the command.
chromium-browser --disk-cache-size=n
say 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
edited Mar 10 at 17:11
![](https://i.stack.imgur.com/E0SEH.png?s=32&g=1)
![](https://i.stack.imgur.com/E0SEH.png?s=32&g=1)
David Foerster
26.4k1362106
26.4k1362106
answered Feb 15 '12 at 14:36
Scott Stookey
1,184614
1,184614
Cf. <superuser.com/a/418591/65570> and the links there, which also mentions--media-cache-size
.
â imz -- Ivan Zakharyaschev
Oct 27 '12 at 4:27
add a comment |Â
Cf. <superuser.com/a/418591/65570> and the links there, which also mentions--media-cache-size
.
â imz -- Ivan Zakharyaschev
Oct 27 '12 at 4:27
Cf. <superuser.com/a/418591/65570> and the links there, which also mentions
--media-cache-size
.â imz -- Ivan Zakharyaschev
Oct 27 '12 at 4:27
Cf. <superuser.com/a/418591/65570> and the links there, which also mentions
--media-cache-size
.â imz -- Ivan Zakharyaschev
Oct 27 '12 at 4:27
add a comment |Â
up vote
2
down vote
Start chrome with the following option:
--disk-cache-size=n
Where n
is the cache size limit in bytes.
1
Does this PERMANENTLY increase the Cache size or do i need to do this everytime i use chrome?
â kernel_panic
Feb 16 '12 at 14:34
1
it's one time. if you want it permanentely edit you chrome launcher.
â Rinzwind
Feb 16 '12 at 14:46
add a comment |Â
up vote
2
down vote
Start chrome with the following option:
--disk-cache-size=n
Where n
is the cache size limit in bytes.
1
Does this PERMANENTLY increase the Cache size or do i need to do this everytime i use chrome?
â kernel_panic
Feb 16 '12 at 14:34
1
it's one time. if you want it permanentely edit you chrome launcher.
â Rinzwind
Feb 16 '12 at 14:46
add a comment |Â
up vote
2
down vote
up vote
2
down vote
Start chrome with the following option:
--disk-cache-size=n
Where n
is the cache size limit in bytes.
Start chrome with the following option:
--disk-cache-size=n
Where n
is the cache size limit in bytes.
edited Mar 10 at 17:11
![](https://i.stack.imgur.com/E0SEH.png?s=32&g=1)
![](https://i.stack.imgur.com/E0SEH.png?s=32&g=1)
David Foerster
26.4k1362106
26.4k1362106
answered Feb 15 '12 at 14:30
Rinzwind
197k25378510
197k25378510
1
Does this PERMANENTLY increase the Cache size or do i need to do this everytime i use chrome?
â kernel_panic
Feb 16 '12 at 14:34
1
it's one time. if you want it permanentely edit you chrome launcher.
â Rinzwind
Feb 16 '12 at 14:46
add a comment |Â
1
Does this PERMANENTLY increase the Cache size or do i need to do this everytime i use chrome?
â kernel_panic
Feb 16 '12 at 14:34
1
it's one time. if you want it permanentely edit you chrome launcher.
â Rinzwind
Feb 16 '12 at 14:46
1
1
Does this PERMANENTLY increase the Cache size or do i need to do this everytime i use chrome?
â kernel_panic
Feb 16 '12 at 14:34
Does this PERMANENTLY increase the Cache size or do i need to do this everytime i use chrome?
â kernel_panic
Feb 16 '12 at 14:34
1
1
it's one time. if you want it permanentely edit you chrome launcher.
â Rinzwind
Feb 16 '12 at 14:46
it's one time. if you want it permanentely edit you chrome launcher.
â Rinzwind
Feb 16 '12 at 14:46
add a comment |Â
up vote
2
down vote
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=N
Where 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.
1
You should alter this for a sollution for Ubuntu not windows.
â Rinzwind
Feb 15 '12 at 15:12
And a slightly more aesthetic presentation of switches can be found here: List of Chromium Command Line Switches
â user25656
Feb 15 '12 at 16:06
where is chrome shortcut? where is prpperties?
â kernel_panic
Feb 16 '12 at 14:33
add a comment |Â
up vote
2
down vote
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=N
Where 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.
1
You should alter this for a sollution for Ubuntu not windows.
â Rinzwind
Feb 15 '12 at 15:12
And a slightly more aesthetic presentation of switches can be found here: List of Chromium Command Line Switches
â user25656
Feb 15 '12 at 16:06
where is chrome shortcut? where is prpperties?
â kernel_panic
Feb 16 '12 at 14:33
add a comment |Â
up vote
2
down vote
up vote
2
down vote
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=N
Where 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.
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=N
Where 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.
edited Mar 10 at 17:14
![](https://i.stack.imgur.com/E0SEH.png?s=32&g=1)
![](https://i.stack.imgur.com/E0SEH.png?s=32&g=1)
David Foerster
26.4k1362106
26.4k1362106
answered Feb 15 '12 at 14:57
Chathura Widanage
5602816
5602816
1
You should alter this for a sollution for Ubuntu not windows.
â Rinzwind
Feb 15 '12 at 15:12
And a slightly more aesthetic presentation of switches can be found here: List of Chromium Command Line Switches
â user25656
Feb 15 '12 at 16:06
where is chrome shortcut? where is prpperties?
â kernel_panic
Feb 16 '12 at 14:33
add a comment |Â
1
You should alter this for a sollution for Ubuntu not windows.
â Rinzwind
Feb 15 '12 at 15:12
And a slightly more aesthetic presentation of switches can be found here: List of Chromium Command Line Switches
â user25656
Feb 15 '12 at 16:06
where is chrome shortcut? where is prpperties?
â kernel_panic
Feb 16 '12 at 14:33
1
1
You should alter this for a sollution for Ubuntu not windows.
â Rinzwind
Feb 15 '12 at 15:12
You should alter this for a sollution for Ubuntu not windows.
â Rinzwind
Feb 15 '12 at 15:12
And a slightly more aesthetic presentation of switches can be found here: List of Chromium Command Line Switches
â user25656
Feb 15 '12 at 16:06
And a slightly more aesthetic presentation of switches can be found here: List of Chromium Command Line Switches
â user25656
Feb 15 '12 at 16:06
where is chrome shortcut? where is prpperties?
â kernel_panic
Feb 16 '12 at 14:33
where is chrome shortcut? where is prpperties?
â kernel_panic
Feb 16 '12 at 14:33
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f104415%2fhow-do-i-increase-cache-size-in-chrome%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
I'm going to stick my neck out here but I suspect that increasing the cache size over the default may not significantly improve things. What's more, pages often have fresh content and rotate ads thereby diminishing the utility of cache. You may have more luck in getting pages to "load" faster by blocking unnecessary items from downloading but that's another issue not relevant to askubuntu.
â user25656
Feb 15 '12 at 15:22