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-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, T_SCC_BODY_TEXT_LINE 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 AB9CC1F54E for ; Wed, 17 Aug 2022 09:33:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1660728797; bh=dJuIaaOabc2SFmU+agqzxp9mVuHK4Z1SHvHnw25hlk4=; h=From:To:Subject:Date:From; b=l7DX4007LXWHQ7HGBlyAUkSSkkPtwVNjAkggWEyJL6iM1nyFTdDEu4Kq7LYiL4+si 5x2mFTKBqiw1JRijAsx7RrdVhsd2w3qOejUtY6kFFiJODEO5KQRNQliwN437tKohXk Wjf+L1UKwFXk8JAkrK1qnwdRiB3UU7lIQAaDEMzI= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 0/4] lei reindex, minor tweaks Date: Wed, 17 Aug 2022 09:33:13 +0000 Message-Id: <20220817093317.3820774-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Reindex is far from complete, and probably needs a compact, and some other fixups for old data + rethread support. But avoiding false positives from base-85 is nice. Eric Wong (4): searchidx: fix spelling error in comment lei inspect: less scary exception for invalid "docid:" inspect lei/store: reduce work when accessing mail_sync.sqlite3 lei reindex: new command to reindex lei/store Documentation/lei-reindex.pod | 47 +++++++++++++++++++++++++++++++++ MANIFEST | 2 ++ lib/PublicInbox/LEI.pm | 2 ++ lib/PublicInbox/LeiInspect.pm | 5 ++-- lib/PublicInbox/LeiReindex.pm | 49 +++++++++++++++++++++++++++++++++++ lib/PublicInbox/LeiStore.pm | 38 ++++++++++++++++++++++++--- lib/PublicInbox/SearchIdx.pm | 2 +- 7 files changed, 138 insertions(+), 7 deletions(-) create mode 100644 Documentation/lei-reindex.pod create mode 100644 lib/PublicInbox/LeiReindex.pm