From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 04CB41FB0A for ; Sat, 5 Dec 2020 10:11:39 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 0/2] isearch: per-inbox search using ->ALL Date: Sat, 5 Dec 2020 10:11:36 +0000 Message-Id: <20201205101138.11973-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: 1/2 is preparatory, 2/2 changes all the WWW code to support isearch and avoid touching per-inbox Xapian indices. Now, if extindex.all.topdir is configured, per-Inbox Xapian search will use ->ALL, and not xap15/[0-9] (over.sqlite3 is still required for each inbox). Unfortunately, IMAP still needs much work and still uses per-inbox Xapian indices. Not sure about JMAP, but it looks like it'll be supportable since we won't have to worry about MSN<=>UID mappings and limiting mailbox size to accomodate (non-existent :P) MUA support Eric Wong (2): inbox: simplify ->search and callers isearch: emulate per-inbox search with ->ALL MANIFEST | 1 + lib/PublicInbox/Config.pm | 4 ++ lib/PublicInbox/DummyInbox.pm | 2 +- lib/PublicInbox/ExtMsg.pm | 2 +- lib/PublicInbox/ExtSearch.pm | 1 + lib/PublicInbox/Inbox.pm | 24 ++++++---- lib/PublicInbox/Isearch.pm | 87 +++++++++++++++++++++++++++++++++++ lib/PublicInbox/Mbox.pm | 16 +++++-- lib/PublicInbox/Search.pm | 5 +- lib/PublicInbox/SearchView.pm | 10 ++-- lib/PublicInbox/SolverGit.pm | 2 +- lib/PublicInbox/WWW.pm | 2 +- lib/PublicInbox/WwwStream.pm | 2 +- lib/PublicInbox/WwwText.pm | 2 +- t/extsearch.t | 25 +++++++++- 15 files changed, 157 insertions(+), 28 deletions(-) create mode 100644 lib/PublicInbox/Isearch.pm