From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,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.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id B47B51F406 for ; Sun, 26 Nov 2023 02:11:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1700964665; bh=yfsGxuW95xF+7eaCq1iqhQPovtdszOMktMgynIIeBwY=; h=From:To:Subject:Date:From; b=m1WgkprvbD4UvnlzSvZ1xRtVlohLKzIKj0riAC77Ft2+cVOjvIUtJ0hVXDMbLwS+4 cyKFD9WZ41MmrZYlOf54i8QhbK54hswQMCAjac5JWgJtZnFq1Pgf2t/sEQudy8rL1P V7r67D91n1I00BIiW3U4pbSGZXR/JzCPwemv8WdE= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 0/7] more I/O + process reliability and cleanups Date: Sun, 26 Nov 2023 02:10:58 +0000 Message-ID: <20231126021105.408573-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: 6/7 ought to fix another hang in t/lei-q-save.t when writing to v2 outputs. Much of this stuff will be relevant to code search since Xapian searches will be moved to C++ (if available) to support features which aren't usable from Perl bindings and allow more predictable performance anyways. Eric Wong (7): xap_helper_cxx: do not copy xap_helper.h source xap_client: attach PID to the IO object xap_client: pass arguments to top-level xap_helper xap_helper: allow PI_NO_CXX to disable C++ in more places git: move rbuf handling to PublicInbox::IO git: improve coupling with {sock} and {inflight} fields drop redundant calls to DS->Reset lib/PublicInbox/CodeSearchIdx.pm | 11 +-- lib/PublicInbox/Daemon.pm | 1 - lib/PublicInbox/Gcf2Client.pm | 7 +- lib/PublicInbox/Git.pm | 138 ++++++++++++------------------- lib/PublicInbox/GitAsyncCat.pm | 2 +- lib/PublicInbox/IO.pm | 70 ++++++++++++++-- lib/PublicInbox/TestCommon.pm | 2 +- lib/PublicInbox/Watch.pm | 6 +- lib/PublicInbox/XapClient.pm | 9 +- lib/PublicInbox/XapHelperCxx.pm | 11 +-- lib/PublicInbox/Xapcmd.pm | 6 +- t/xap_helper.t | 5 +- 12 files changed, 145 insertions(+), 123 deletions(-)