about summary refs log tree commit homepage
path: root/lib/PublicInbox/SearchIdxSkeleton.pm
diff options
context:
space:
mode:
authorEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2018-03-03 17:26:16 +0000
committerEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2018-03-03 17:26:16 +0000
commit43fd7e7bda1b8eeb32cf43f6fd89568a938aedf5 (patch)
tree2a165144b8f01fbc1b41340124af10f7224e5b0f /lib/PublicInbox/SearchIdxSkeleton.pm
parentd95eee4a10bdb9d30a6aeb93b475250e02109506 (diff)
downloadpublic-inbox-43fd7e7bda1b8eeb32cf43f6fd89568a938aedf5.tar.gz
Aside from the Message-Id ('Q'), these terms do not appear in
content and thus have no business contributing to the Xapian
document length.

Thanks-to Olly Betts for the tip on xapian-discuss
<20180228004400.GU12724@survex.com>
Diffstat (limited to 'lib/PublicInbox/SearchIdxSkeleton.pm')
-rw-r--r--lib/PublicInbox/SearchIdxSkeleton.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/SearchIdxSkeleton.pm b/lib/PublicInbox/SearchIdxSkeleton.pm
index 506e566f..3fe6a4ad 100644
--- a/lib/PublicInbox/SearchIdxSkeleton.pm
+++ b/lib/PublicInbox/SearchIdxSkeleton.pm
@@ -98,7 +98,7 @@ sub index_skeleton_real ($$) {
         my $ts = $values->[PublicInbox::Search::TS];
         my $smsg = PublicInbox::SearchMsg->new(undef);
         my $doc = $smsg->{doc};
-        $doc->add_term('XPATH' . $xpath) if defined $xpath;
+        $doc->add_boolean_term('XPATH' . $xpath) if defined $xpath;
         foreach my $mid (@$mids) {
                 $doc->add_term('Q' . $mid);
         }