From 65447bc01cde6c10d661f9b531c76935abfb65b2 Mon Sep 17 00:00:00 2001 From: yokoffing <11689349+yokoffing@users.noreply.github.com> Date: Sun, 4 Dec 2022 12:06:34 -0500 Subject: [PATCH] Update Fastfox.js --- Fastfox.js | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Fastfox.js b/Fastfox.js index c0149c1..c8230f5 100644 --- a/Fastfox.js +++ b/Fastfox.js @@ -15,6 +15,21 @@ user_pref("nglayout.initialpaint.delay", 0); // default=5; used to be 250 user_pref("nglayout.initialpaint.delay_in_oopif", 0); // default=5 +// PREF: notification interval (in microseconds) +// When Firefox is loading a page, it periodically reformats +// or "reflows" the page as it loads. The page displays new elements +// every 0.12 seconds by default. These redraws increase the total page load time. +// Lowering the interval will decrease the perceived page load time +// but increase the total loading time. +// The notification interval has a dramatic effect on how long it takes to +// initially display content for slow connections. The default value +// provides good incremental display of content without causing an increase +// in page load time. If this value is set below 1/10 of a second it starts +// to impact page load performance. +// [1] https://searchfox.org/mozilla-central/rev/c1180ea13e73eb985a49b15c0d90e977a1aa919c/modules/libpref/init/StaticPrefList.yaml#1824-1834 +user_pref("content.notify.interval", 360000); // (.36s), default=120000 (.12s) + //user_pref("content.notify.ontimer", true); // DEFAULT + // PREF: set the minimum interval between session save operations // Increasing this can help on older machines and some websites, as well as reducing writes // [1] https://bugzilla.mozilla.org/1304389 @@ -153,21 +168,6 @@ user_pref("media.memory_caches_combined_limit_kb", 2560000); // preferred=314572 user_pref("media.cache_readahead_limit", 9000); // default=60; stop reading ahead when our buffered data is this many seconds ahead of the current playback user_pref("media.cache_resume_threshold", 6000); // default=30; when a network connection is suspended, don't resume it until the amount of buffered data falls below this threshold (in seconds) -// PREF: notification interval (in microseconds) -// When Firefox is loading a page, it periodically reformats -// or "reflows" the page as it loads. The page displays new elements -// every 0.12 seconds by default. These redraws increase the total page load time. -// Lowering the interval will decrease the perceived page load time -// but increase the total loading time. -// The notification interval has a dramatic effect on how long it takes to -// initially display content for slow connections. The default value -// provides good incremental display of content without causing an increase -// in page load time. If this value is set below 1/10 of a second it starts -// to impact page load performance. -// [1] https://searchfox.org/mozilla-central/rev/c1180ea13e73eb985a49b15c0d90e977a1aa919c/modules/libpref/init/StaticPrefList.yaml#1824-1834 -user_pref("content.notify.interval", 360000); // (.36s), default=120000 (.12s) - //user_pref("content.notify.ontimer", true); // DEFAULT - // PREF: disable QUIC for faster upload speeds // Firefox currently has a bug with impacting upload speeds with HTTP3 // [TEST] https://speedof.me/