]> Sergey Matveev's repositories - public-inbox.git/commitdiff
lei import: increase flags search batch size, display progress
authorEric Wong <e@80x24.org>
Fri, 2 Jul 2021 21:02:23 +0000 (21:02 +0000)
committerEric Wong <e@80x24.org>
Sat, 3 Jul 2021 22:09:48 +0000 (22:09 +0000)
IMAP flag-only synchronization doesn't fetch entire messages,
so we can safely bump the batch size iff a user specified one
for full messages to 10000 times that.

Since I sometimes wonder why nothing happens for several seconds
after starting "lei import $URL", we'll also show some progress
during the flag synchronization phase.

lib/PublicInbox/NetReader.pm

index 0c2288d86c3bbbcafeab103fda215b59ab6b0934..23445e7a49f2200834ae5571464c97d6c00b560d 100644 (file)
@@ -462,8 +462,9 @@ sub each_old_flags ($$$$) {
        my ($self, $mic, $uri, $l_uid) = @_;
        $l_uid ||= 1;
        my $sec = uri_section($uri);
-       my $bs = $self->{imap_opt}->{$sec}->{batch_size} // 10000;
+       my $bs = ($self->{imap_opt}->{$sec}->{batch_size} // 1) * 10000;
        my ($eml_cb, @args) = @{$self->{eml_each}};
+       $self->{quiet} or warn "# $uri syncing flags 1:$l_uid\n";
        for (my $n = 1; $n <= $l_uid; $n += $bs) {
                my $end = $n + $bs;
                $end = $l_uid if $end > $l_uid;