From 3e0dc32017b84b2c4b7a91445894b8eab7e2ef02 Mon Sep 17 00:00:00 2001 From: Alexander Butenko Date: Sat, 31 Mar 2012 03:28:06 +0200 Subject: [PATCH] Use sqlite WAL mode for history if available --- midori/main.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/midori/main.c b/midori/main.c index b19914ff..ac187d92 100644 --- a/midori/main.c +++ b/midori/main.c @@ -441,9 +441,12 @@ midori_history_initialize (KatzeArray* array, return FALSE; } + if (sqlite3_exec (db, + "PRAGMA journal_mode = WAL; PRAGMA cache_size = 32100;", + NULL, NULL, errmsg) != SQLITE_OK) + sqlite3_exec (db, "PRAGMA journal_mode = TRUNCATE;", NULL, NULL, errmsg); sqlite3_exec (db, - /* "PRAGMA synchronous = OFF; PRAGMA temp_store = MEMORY" */ - "PRAGMA count_changes = OFF; PRAGMA journal_mode = TRUNCATE;", + "PRAGMA synchronous = NORMAL; PRAGMA temp_store = MEMORY;", NULL, NULL, errmsg); if (*errmsg) {