bug 417732: fix delay and disk activity when full/text zooming by turning PRAGMA SYNCHRONOUS off for the content prefs database; r=mconnor, a=shaver

This commit is contained in:
myk@mozilla.org 2008-05-25 18:05:00 -07:00
parent 7af4aefafc
commit d7a9815ea6
2 changed files with 28 additions and 0 deletions

View File

@ -83,6 +83,15 @@ ContentPrefService.prototype = {
return this.__consoleSvc;
},
// Preferences Service
__prefSvc: null,
get _prefSvc ContentPrefService_get__prefSvc() {
if (!this.__prefSvc)
this.__prefSvc = Cc["@mozilla.org/preferences-service;1"].
getService(Ci.nsIPrefBranch2);
return this.__prefSvc;
},
//**************************************************************************//
// Destruction
@ -721,6 +730,21 @@ ContentPrefService.prototype = {
}
}
// Turn off disk synchronization checking to reduce disk churn and speed up
// operations when prefs are changed rapidly (such as when a user repeatedly
// changes the value of the browser zoom setting for a site).
//
// Note: this could cause database corruption if the OS crashes or machine
// loses power before the data gets written to disk, but this is considered
// a reasonable risk for the not-so-critical data stored in this database.
//
// If you really don't want to take this risk, however, just set the
// toolkit.storage.synchronous pref to 1 (NORMAL synchronization) or 2
// (FULL synchronization), in which case mozStorageConnection::Initialize
// will use that value, and we won't override it here.
if (!this._prefSvc.prefHasUserValue("toolkit.storage.synchronous"))
dbConnection.executeSimpleSQL("PRAGMA synchronous = OFF");
this._dbConnection = dbConnection;
},

View File

@ -140,6 +140,10 @@ function run_test() {
var uri = ContentPrefTest.getURI("http://www.example.com/");
// Make sure disk synchronization checking is turned off by default.
var statement = cps.DBConnection.createStatement("PRAGMA synchronous");
statement.executeStep();
do_check_eq(0, statement.getInt32(0));
//**************************************************************************//
// Nonexistent Pref