summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/prserv/db.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/prserv/db.py b/lib/prserv/db.py
index 3bdc04692..9d6d11526 100644
--- a/lib/prserv/db.py
+++ b/lib/prserv/db.py
@@ -235,6 +235,7 @@ class PRData(object):
self.connection=sqlite3.connect(self.filename, isolation_level="EXCLUSIVE", check_same_thread = False)
self.connection.row_factory=sqlite3.Row
self.connection.execute("pragma synchronous = off;")
+ self.connection.execute("PRAGMA journal_mode = WAL;")
self._tables={}
def __del__(self):