]> Sergey Matveev's repositories - public-inbox.git/commitdiff
view: stop storing all MIME objects on large threads
authorEric Wong <e@80x24.org>
Tue, 8 Jan 2019 00:41:12 +0000 (00:41 +0000)
committerEric Wong <e@80x24.org>
Tue, 8 Jan 2019 00:43:14 +0000 (00:43 +0000)
While we try to discard the $smsg (SearchMsg) objects quickly,
they remain referenced via $node (SearchThread::Msg) objects,
which are stored forever in $ctx->{mapping} to cull redundant
words out of subjects in the thread skeleton.

This significantly cuts memory bloat with large search results
with '&x=t'.  Now, the search results overhead of
SearchThread::Msg and linked objects are stable at around 350K
instead of ~7M per response in a rough test (there's more
savings to be had in the same areas).

Several hundred kilobytes is still huge and a large per-client
cost; but it's far better than MEGABYTES per-client.

lib/PublicInbox/View.pm

index bb49c035d976db7a65b83924a594e4b16c407b99..416cb4a8001a9040afabff4ec606a2ceacb6c67b 100644 (file)
@@ -218,7 +218,7 @@ sub index_entry {
        $rv .= $subj . "\n";
        $rv .= _th_index_lite($mid_raw, \$irt, $id, $ctx);
        my @tocc;
-       my $mime = $smsg->{mime};
+       my $mime = delete $smsg->{mime}; # critical to memory use
        my $hdr = $mime->header_obj;
        my $from = _hdr_names_html($hdr, 'From');
        obfuscate_addrs($obfs_ibx, $from) if $obfs_ibx;