From 46671a92d646af3e317843806aebf6c150324765 Mon Sep 17 00:00:00 2001 From: yokoffing <11689349+yokoffing@users.noreply.github.com> Date: Fri, 10 Nov 2023 10:45:05 -0500 Subject: [PATCH] Updated Common Overrides (markdown) --- Common-Overrides.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Common-Overrides.md b/Common-Overrides.md index 763a0e1..ceca378 100644 --- a/Common-Overrides.md +++ b/Common-Overrides.md @@ -151,6 +151,27 @@ 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. +```javascript +user_pref("browser.cache.disk.smart_size.enabled", false); +user_pref("browser.cache.disk.capacity", 1024000); +user_pref("browser.cache.disk.metadata_memory_limit", 1000); +``` + +*** + ### Scrolling Firefox's default scrolling [needs improvement](https://www.reddit.com/r/firefox/comments/y3wzwk/why_is_scrolling_so_janky_on_firefox/).