Merge remote-tracking branch 'origin/pr/3509'
This commit is contained in:
commit
582236e42b
@ -115,6 +115,11 @@ def init(db_path):
|
|||||||
raise SqliteError("Failed to open sqlite database at {}: {}"
|
raise SqliteError("Failed to open sqlite database at {}: {}"
|
||||||
.format(db_path, error.text()), error)
|
.format(db_path, error.text()), error)
|
||||||
|
|
||||||
|
# Enable write-ahead-logging and reduce disk write frequency
|
||||||
|
# see https://sqlite.org/pragma.html and issues #2930 and #3507
|
||||||
|
Query("PRAGMA journal_mode=WAL").run()
|
||||||
|
Query("PRAGMA synchronous=NORMAL").run()
|
||||||
|
|
||||||
|
|
||||||
def close():
|
def close():
|
||||||
"""Close the SQL connection."""
|
"""Close the SQL connection."""
|
||||||
|
Loading…
Reference in New Issue
Block a user