]> Sergey Matveev's repositories - public-inbox.git/commitdiff
overidx: document why we don't use SQLite WAL
authorEric Wong <e@yhbt.net>
Wed, 1 Jul 2020 21:06:19 +0000 (21:06 +0000)
committerEric Wong <e@yhbt.net>
Thu, 2 Jul 2020 20:36:21 +0000 (20:36 +0000)
I was wondering about this myself the other day and had to read
up on it.  So make a note of it for future readers.

lib/PublicInbox/OverIdx.pm

index c7f45a6c910a91b98ca3500c0b06ed5e4a8c35c5..008a5d1a936fd981786c2a7158aa2f9271e6f187 100644 (file)
@@ -23,6 +23,8 @@ sub dbh_new {
        my $dbh = $self->SUPER::dbh_new(1);
 
        # TRUNCATE reduces I/O compared to the default (DELETE)
+       # We do not use WAL since we're optimized for read-only ops,
+       # (and read-only requires SQLite 3.22.0 (2018-01-22)).
        $dbh->do('PRAGMA journal_mode = TRUNCATE');
 
        # 80000 pages (80MiB on SQLite <3.12.0, 320MiB on 3.12.0+)