From c68fd64bffc8b771df6140af2843faf93572d11c Mon Sep 17 00:00:00 2001 From: Hal <11689349+yokoffing@users.noreply.github.com> Date: Mon, 13 Nov 2023 12:02:21 -0500 Subject: [PATCH] Updated Common Overrides (markdown) --- Common-Overrides.md | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/Common-Overrides.md b/Common-Overrides.md index a7d5669..aca66a2 100644 --- a/Common-Overrides.md +++ b/Common-Overrides.md @@ -138,18 +138,8 @@ user_pref("gfx.canvas.accelerated", true); *** ### Cache Adjustments -#### Memory and Media Cache -Depending on your workflow, you may can use these prefs if you have 16GB+ RAM: -```javascript -user_pref("browser.cache.memory.capacity", 256000); // default= -1 (32768) -user_pref("browser.cache.memory.max_entry_size", 10240); // default=5120 (5 MB) -user_pref("media.memory_cache_max_size", 131072); // default=8192; AF=65536 -user_pref("media.memory_caches_combined_limit_kb", 1048576); // default=524288 -user_pref("media.memory_caches_combined_limit_pc_sysmem", 10); // default=5 -``` - #### Increase Size of Disk Cache -Allows the disk cache 1 GB on storage. +Allows the disk cache 1GB on storage. ```javascript user_pref("browser.cache.disk.smart_size.enabled", false); user_pref("browser.cache.disk.capacity", 1024000);