mirror of
https://github.com/yokoffing/Betterfox.git
synced 2026-06-12 15:40:48 +05:30
Updated Common Overrides (markdown)
@@ -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/).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user