X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=lib%2FPublicInbox%2FSearchIdxShard.pm;h=74c624a4d3dddcb67ac5938aaa1f5186c34284e1;hp=ee176e504298dd5e1b1685c94dd5bcfc53d38f14;hb=8e81d6f0d44198717ae540421a09824d75c9bb6d;hpb=c29b2b7ded47def906cf00e3baad65c102304120 diff --git a/lib/PublicInbox/SearchIdxShard.pm b/lib/PublicInbox/SearchIdxShard.pm index ee176e50..74c624a4 100644 --- a/lib/PublicInbox/SearchIdxShard.pm +++ b/lib/PublicInbox/SearchIdxShard.pm @@ -67,12 +67,15 @@ sub shard_worker_loop ($$$$$) { $self->remove_by_oid($oid, $mid); } else { chomp $line; - my ($len, $artnum, $oid, $mid0) = split(/ /, $line); + my ($len, $artnum, $oid, $mid0, $autime, $cotime) = + split(/ /, $line); $self->begin_txn_lazy; my $n = read($r, my $msg, $len) or die "read: $!\n"; $n == $len or die "short read: $n != $len\n"; my $mime = PublicInbox::MIME->new(\$msg); $artnum = int($artnum); + $self->{autime} = $autime; + $self->{cotime} = $cotime; $self->add_message($mime, $n, $artnum, $oid, $mid0); } } @@ -81,13 +84,17 @@ sub shard_worker_loop ($$$$$) { # called by V2Writable sub index_raw { - my ($self, $bytes, $msgref, $artnum, $oid, $mid0, $mime) = @_; + my ($self, $bytes, $msgref, $artnum, $oid, $mid0, $mime, $times) = @_; + my $at = $times->{autime} // time; + my $ct = $times->{cotime} // time; if (my $w = $self->{w}) { - print $w "$bytes $artnum $oid $mid0\n", $$msgref or die - "failed to write shard $!\n"; + print $w "$bytes $artnum $oid $mid0 $at $ct\n", $$msgref or + die "failed to write shard $!\n"; } else { $$msgref = undef; $self->begin_txn_lazy; + $self->{autime} = $at; + $self->{cotime} = $ct; $self->add_message($mime, $bytes, $artnum, $oid, $mid0); } }