From 589355867a4fcaf25a9db43c4c5dcc9a1e32ec1e Mon Sep 17 00:00:00 2001 From: "Eric Wong (Contractor, The Linux Foundation)" Date: Mon, 5 Mar 2018 23:13:47 +0000 Subject: search: each_smsg_by_mid uses skeleton if available We do not need the large DBs for MID scans. --- lib/PublicInbox/Search.pm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/PublicInbox/Search.pm b/lib/PublicInbox/Search.pm index dc46ead0..7cad31a7 100644 --- a/lib/PublicInbox/Search.pm +++ b/lib/PublicInbox/Search.pm @@ -409,13 +409,15 @@ sub lookup_article { sub each_smsg_by_mid { my ($self, $mid, $cb) = @_; - my $xdb = $self->{xdb}; # XXX retry_reopen isn't necessary for V2Writable, but the PSGI # interface will need it... - my ($head, $tail) = $self->find_doc_ids('Q' . $mid); + my $db = $self->{skel} || $self->{xdb}; + my $term = 'Q' . $mid; + my $head = $db->postlist_begin($term); + my $tail = $db->postlist_end($term); for (; $head->nequal($tail); $head->inc) { my $doc_id = $head->get_docid; - my $doc = $xdb->get_document($doc_id); + my $doc = $db->get_document($doc_id); my $smsg = PublicInbox::SearchMsg->wrap($doc, $mid); $smsg->{doc_id} = $doc_id; $cb->($smsg) or return; -- cgit v1.2.3-24-ge0c7