]> Sergey Matveev's repositories - public-inbox.git/commitdiff
nntp: speed up group listings via ->ALL->misc
authorEric Wong <e@80x24.org>
Wed, 3 Aug 2022 20:03:56 +0000 (20:03 +0000)
committerEric Wong <e@80x24.org>
Thu, 4 Aug 2022 07:00:59 +0000 (07:00 +0000)
By taking advantage of the new ART_MIN/ART_MAX value in MiscIdx,
we can avoid the overhead of opening per-inbox msgmap DB files.
The result gives us a ~40 speedup with 50K newgroups.

lib/PublicInbox/NNTP.pm

index 9ae1353ac2b110f81b517b91c248cc218248f7c4..524784cb90ac3a6dfabc29f030d5e7cd32fe2704 100644 (file)
@@ -123,7 +123,7 @@ sub names2ibx ($;$) {
 sub list_active_i { # "LIST ACTIVE" and also just "LIST" (no args)
        my ($self, $ibxs) = @_;
        my @window = splice(@$ibxs, 0, 1000);
-       $self->msg_more(join('', map { group_line($_) } @window));
+       emit_group_lines($self, \@window);
        scalar @$ibxs; # continue if there's more
 }
 
@@ -244,19 +244,27 @@ sub parse_time ($$;$) {
        }
 }
 
-sub group_line ($) {
-       my ($ibx) = @_;
-       my ($min, $max) = $ibx->mm(1)->minmax;
-       "$ibx->{newsgroup} $max $min n\r\n";
+sub emit_group_lines {
+       my ($self, $ibxs) = @_;
+       my ($min, $max);
+       my $ALL = $self->{nntpd}->{pi_cfg}->ALL;
+       my $misc = $ALL->misc if $ALL;
+       my $buf = '';
+       for my $ibx (@$ibxs) {
+               $misc ? $misc->inbox_data($ibx) :
+                       delete(@$ibx{qw(-art_min -art_max)});
+               ($min, $max) = ($ibx->art_min, $ibx->art_max);
+               $buf .= "$ibx->{newsgroup} $max $min n\r\n";
+       }
+       $self->msg_more($buf);
 }
 
 sub newgroups_i {
        my ($self, $ts, $ibxs) = @_;
        my @window = splice(@$ibxs, 0, 1000);
-       $self->msg_more(join('', map { group_line($_) } grep {
-                (eval { $_->uidvalidity } // 0) > $ts
-       } @window));
-       scalar @$ibxs;
+       @window = grep { (eval { $_->uidvalidity } // 0) > $ts } @window;
+       emit_group_lines($self, \@window);
+       scalar @$ibxs; # any more?
 }
 
 sub cmd_newgroups ($$$;$$) {