From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: 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.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id ADC441F404 for ; Sat, 7 Apr 2018 03:41:54 +0000 (UTC) From: "Eric Wong (Contractor, The Linux Foundation)" To: meta@public-inbox.org Subject: [PATCH 0/8] less code, less memory, more speed Date: Sat, 7 Apr 2018 03:41:46 +0000 Message-Id: <20180407034154.2309-1-e@80x24.org> List-Id: Eric Wong (Contractor, The Linux Foundation) (8): psgi: ensure /$INBOX/$MESSAGE_ID/T/ endpoint is chronological over: avoid excessive SELECT over: remove forked subprocess v2writable: reduce barriers index: allow specifying --jobs=0 to disable multiprocess convert: support converting with altid defined store less data in the Xapian document msgmap: speed up minmax with separate queries MANIFEST | 1 - lib/PublicInbox/Import.pm | 34 +++++--- lib/PublicInbox/Mbox.pm | 6 +- lib/PublicInbox/Msgmap.pm | 10 ++- lib/PublicInbox/NNTP.pm | 2 +- lib/PublicInbox/Over.pm | 24 +++--- lib/PublicInbox/OverIdx.pm | 57 ++++++++++++- lib/PublicInbox/OverIdxFork.pm | 180 --------------------------------------- lib/PublicInbox/SearchIdx.pm | 77 +++-------------- lib/PublicInbox/SearchIdxPart.pm | 14 +-- lib/PublicInbox/SearchMsg.pm | 6 +- lib/PublicInbox/V2Writable.pm | 176 ++++++++++++++++++++++---------------- script/public-inbox-compact | 6 +- script/public-inbox-convert | 11 ++- script/public-inbox-index | 6 +- t/perf-nntpd.t | 13 ++- t/search.t | 24 +++--- t/v2writable.t | 9 +- 18 files changed, 269 insertions(+), 387 deletions(-) delete mode 100644 lib/PublicInbox/OverIdxFork.pm -- EW