From c92814d3c8b72f70e7a0b3fe1708d7c8c275977b Mon Sep 17 00:00:00 2001 From: "Nicholas A. Zigarovich" Date: Tue, 17 Mar 2009 11:20:30 -0400 Subject: [PATCH] Default places.frecency.updateIdleTime to 0, disabling frecency calculation. This appears to fix for the CPU usage issues seen on Debian and perhaps Arch systems. Also, Conkeror does not use the frecency stat, so no reason to waste cycles calculating it. --- defaults/preferences/history-frecency.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 defaults/preferences/history-frecency.js diff --git a/defaults/preferences/history-frecency.js b/defaults/preferences/history-frecency.js new file mode 100644 index 0000000..bb5be52 --- /dev/null +++ b/defaults/preferences/history-frecency.js @@ -0,0 +1,8 @@ +/* Disable history frecency calculation. xulrunner sometimes consumes + * unreasonable amounts of CPU time if this preference is not set. + * As conkeror does not use the frecency stat, it is disabled by + * default. See also: + * + * http://kb.mozillazine.org/Places.frecency.updateIdleTime + */ +pref("places.frecency.updateIdleTime", 0); -- 2.11.4.GIT