about summary refs log tree commit homepage
path: root/lib/PublicInbox/Search.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/Search.pm')
-rw-r--r--lib/PublicInbox/Search.pm19
1 files changed, 18 insertions, 1 deletions
diff --git a/lib/PublicInbox/Search.pm b/lib/PublicInbox/Search.pm
index c54cf7b9..55eee41c 100644
--- a/lib/PublicInbox/Search.pm
+++ b/lib/PublicInbox/Search.pm
@@ -182,6 +182,7 @@ sub _xdb ($) {
         my ($xdb, $slow_phrase);
         my $qpf = \($self->{qp_flags} ||= $QP_FLAGS);
         if ($self->{ibx_ver} >= 2) {
+                my $n = 0;
                 foreach my $shard (<$dir/*>) {
                         -d $shard && $shard =~ m!/[0-9]+\z! or next;
                         my $sub = $X{Database}->new($shard);
@@ -191,7 +192,9 @@ sub _xdb ($) {
                                 $xdb = $sub;
                         }
                         $slow_phrase ||= -f "$shard/iamchert";
+                        ++$n;
                 }
+                $self->{nshard} = $n;
         } else {
                 $slow_phrase = -f "$dir/iamchert";
                 $xdb = $X{Database}->new($dir);
@@ -200,6 +203,15 @@ sub _xdb ($) {
         $xdb;
 }
 
+# v2 Xapian docids don't conflict, so they're identical to
+# NNTP article numbers and IMAP UIDs.
+# https://trac.xapian.org/wiki/FAQ/MultiDatabaseDocumentID
+sub mdocid {
+        my ($nshard, $mitem) = @_;
+        my $docid = $mitem->get_docid;
+        int(($docid - 1) / $nshard) + 1;
+}
+
 sub xdb ($) {
         my ($self) = @_;
         $self->{xdb} ||= do {
@@ -283,7 +295,7 @@ sub _enquire_once { # retry_reopen callback
         $enquire->set_query($query);
         $opts ||= {};
         my $desc = !$opts->{asc};
-        if (($opts->{mset} || 0) == 2) {
+        if (($opts->{mset} || 0) == 2) { # mset == 2: ORDER BY docid/UID
                 $enquire->set_docid_order($ENQ_ASCENDING);
                 $enquire->set_weighting_scheme($X{BoolWeight}->new);
         } elsif ($opts->{relevance}) {
@@ -322,6 +334,11 @@ sub qp {
         $qp->add_valuerangeprocessor($nvrp->new(YYYYMMDD, 'd:'));
         $qp->add_valuerangeprocessor($nvrp->new(DT, 'dt:'));
 
+        # for IMAP, undocumented for WWW and may be split off go away
+        $qp->add_valuerangeprocessor($nvrp->new(BYTES, 'bytes:'));
+        $qp->add_valuerangeprocessor($nvrp->new(TS, 'ts:'));
+        $qp->add_valuerangeprocessor($nvrp->new(UID, 'uid:'));
+
         while (my ($name, $prefix) = each %bool_pfx_external) {
                 $qp->add_boolean_prefix($name, $_) foreach split(/ /, $prefix);
         }