We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 385b33d commit 88a449aCopy full SHA for 88a449a
lib/sqlitestore.js
@@ -9,6 +9,7 @@ var pragmas = [
9
'PRAGMA main.locking_mode=EXCLUSIVE',
10
'PRAGMA main.synchronous=OFF', // more dangerous, but fast
11
'PRAGMA mmap_size=1099511627776', // use fast mmap for entire db
12
+ 'PRAGMA journal_mode=MEMORY', // live risky but fast
13
//'PRAGMA main.synchronous=NORMAL',
14
//'PRAGMA main.journal_mode=WAL', // WAL is annoying for distributed files
15
];
0 commit comments