No issue - Set the default for incremental cycle collector to be off.

Negative performance impact if enabled.
This commit is contained in:
Moonchild 2023-06-04 17:15:36 +02:00 committed by roytam1
commit c4d665a0d0

View file

@ -1212,7 +1212,10 @@ pref("dom.sysmsg.enabled", false);
// Enable pre-installed applications.
pref("dom.webapps.useCurrentProfile", false);
pref("dom.cycle_collector.incremental", true);
// Use incremental cycle collection?
// In practice this gave a noticeable performance hit. Default off.
// See forum topic https://forum.palemoon.org/viewtopic.php?f=62&t=29887
pref("dom.cycle_collector.incremental", false);
// Parsing perf prefs. For now just mimic what the old code did.
#ifndef XP_WIN