Change Sqlite Journaling to WAL to potentially improve concurrent performance

This commit is contained in:
James Seibel
2024-04-04 07:50:02 -05:00
parent 42675abef1
commit a1a45f50bf
2 changed files with 9 additions and 0 deletions
@@ -0,0 +1,8 @@
-- these PRAGMA's will automatically commit, so we have to disable
-- DH's automatic transactions, otherwise the connection will throw an error
--No Transactions--
pragma journal_mode = WAL;
pragma synchronous = NORMAL;
@@ -2,4 +2,5 @@
0010-sqlite-createInitialDataTables.sql
0020-sqlite-createFullDataSourceV2Tables.sql
0030-sqlite-changeTableJournaling.sql
0031-sqlite-useSqliteWalJournaling.sql
0040-sqlite-removeRenderCache.sql