about summary refs log tree commit homepage
path: root/lib/PublicInbox/ExtSearchIdx.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-10-10 14:25:15 +0000
committerEric Wong <e@80x24.org>2021-10-10 23:29:53 +0000
commit9bc14f521223d63697a2f13986c71f4b0226e21b (patch)
treececd3d19256dfba02f67ef1ade097a29310312d5 /lib/PublicInbox/ExtSearchIdx.pm
parenta9ccb76649432e8fb17a8cf1189ac65de1da2d81 (diff)
downloadpublic-inbox-9bc14f521223d63697a2f13986c71f4b0226e21b.tar.gz
Don't bother decoding the 20-byte SHA-1 to a 40-byte hex value
since we don't read it, anyways.  We can also use the on-stack
ibx->eidx_key value instead of dispatching the method again.
Diffstat (limited to 'lib/PublicInbox/ExtSearchIdx.pm')
-rw-r--r--lib/PublicInbox/ExtSearchIdx.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/PublicInbox/ExtSearchIdx.pm b/lib/PublicInbox/ExtSearchIdx.pm
index 04948b8b..42488e12 100644
--- a/lib/PublicInbox/ExtSearchIdx.pm
+++ b/lib/PublicInbox/ExtSearchIdx.pm
@@ -902,15 +902,14 @@ DELETE FROM xref3 WHERE ibx_id = ? AND xnum = ? AND oidbin = ?
                         $del->execute;
 
                         # get_xref3 over-fetches, but this is a rare path:
-                        my $xr3 = $self->{oidx}->get_xref3($docid);
+                        my $xr3 = $self->{oidx}->get_xref3($docid, 1);
                         my $idx = $self->idx_shard($docid);
                         if (scalar(@$xr3) == 0) { # all gone
                                 $self->{oidx}->delete_by_num($docid);
                                 $self->{oidx}->eidxq_del($docid);
                                 $idx->ipc_do('xdb_remove', $docid);
                         } else { # enqueue for reindex of remaining messages
-                                $idx->ipc_do('remove_eidx_info',
-                                                $docid, $ibx->eidx_key);
+                                $idx->ipc_do('remove_eidx_info', $docid, $ekey);
                                 $self->{oidx}->eidxq_add($docid); # yes, add
                         }
                 }