]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/OverIdx.pm
wwwstream: oneshot: perform gzip without middleware
[public-inbox.git] / lib / PublicInbox / OverIdx.pm
index cb15baadf2b8ef525ea8fc2ef7857f5878087ab3..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+)
@@ -254,11 +256,10 @@ sub subject_path ($) {
 sub add_overview {
        my ($self, $mime, $smsg) = @_;
        $smsg->{lines} = $mime->body_raw =~ tr!\n!\n!;
-       $smsg->{mime} = $mime; # XXX temporary?
        my $hdr = $mime->header_obj;
        my $mids = mids_for_index($hdr);
        my $refs = parse_references($smsg, $hdr, $mids);
-       my $subj = $smsg->subject;
+       my $subj = $smsg->{subject};
        my $xpath;
        if ($subj ne '') {
                $xpath = subject_path($subj);