Skip to content

Instantly share code, notes, and snippets.

@gagarine
Last active December 21, 2023 06:22
Show Gist options
  • Save gagarine/5cf8f861abe0dd035b7af19e4f691cd8 to your computer and use it in GitHub Desktop.
Save gagarine/5cf8f861abe0dd035b7af19e4f691cd8 to your computer and use it in GitHub Desktop.

Firefox write/read a lot on the disk. This can reduce the performance of other program.

In about:config

Reduce latency of session write

browser.sessionstore.interval to 600000 (1 hours)

This value is in ms.Default is 15000ms (every 15 seconde).

Disable disk cache

browser.cache.disk.enable to false

It will only use RAM for cache, so reloading website after Firefox restart can be a bit slower if you have a slow network.

Related bugs

https://bugzilla.mozilla.org/show_bug.cgi?id=1304389

@tipiak75
Copy link

Kudos to you for writing this. You just changed my digital life for the better !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment