canmove, Confirmed users
1,577
edits
No edit summary |
(add note about how to set the memory cache capacity lower) |
||
| Line 19: | Line 19: | ||
user_pref("browser.cache.memory.enable", false); | user_pref("browser.cache.memory.enable", false); | ||
This turns off the cache | This turns off the cache. Probably not the best thing to do as things will get decoded more than once and you'll end up with more fragmentation according to stuart. Good to leave this at some small number instead. | ||
user_pref("browser.cache.memory.capacity", 8192); | |||
This sets the memory cache to 8MB, which is a good starting size. (Also the same default size as what WebKit uses.) | |||
===Reduce disk cache=== | ===Reduce disk cache=== | ||