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 04AD51FA13 for ; Mon, 25 Jan 2021 04:53:47 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 3/3] doc: start working on public-inbox-extindex(1) manpage Date: Sun, 24 Jan 2021 19:53:46 -0900 Message-Id: <20210125045346.16264-4-e@80x24.org> In-Reply-To: <20210125045346.16264-1-e@80x24.org> References: <20210125045346.16264-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: It's barely started, but I started writing this weeks ago, but I'm still unsure about some behavioral/usability things and hoping work on lei(1) can flush them out. --- Documentation/public-inbox-extindex.pod | 84 +++++++++++++++++++++++++ MANIFEST | 1 + 2 files changed, 85 insertions(+) create mode 100644 Documentation/public-inbox-extindex.pod diff --git a/Documentation/public-inbox-extindex.pod b/Documentation/public-inbox-extindex.pod new file mode 100644 index 00000000..a92181e4 --- /dev/null +++ b/Documentation/public-inbox-extindex.pod @@ -0,0 +1,84 @@ +=head1 NAME + +public-inbox-extindex - create and update external search indices + +=head1 SYNOPSIS + +public-inbox-extindex [OPTIONS] EXTINDEX_DIR INBOX_DIR... + +public-inbox-extindex [OPTIONS] [EXTINDEX_DIR] --all + +=head1 DESCRIPTION + +FIXME: behavior not finalized It should probably write to the +config file the first time --all is used. + +public-inbox-extindex creates and updates an external search and +overview database used by the read-only public-inbox PSGI (HTTP), +NNTP, and IMAP interfaces. This requires either the +L XS bindings OR the L SWIG bindings, +along with L and L Perl modules. + +=head1 OPTIONS + +=over + +=item --jobs=JOBS, -j + +... TODO, see L + +=back + +=head1 FILES + +L + +=head1 CONFIGURATION + +... TODO, see L + +=head1 ENVIRONMENT + +=over 8 + +=item PI_CONFIG + +Used to override the default "~/.public-inbox/config" value. + +=item XAPIAN_FLUSH_THRESHOLD + +The number of documents to update before committing changes to +disk. This environment is handled directly by Xapian, refer to +Xapian API documentation for more details. + +Setting C or +C for a large C<--reindex> may cause +L, L and +L tasks to wait long and unpredictable +periods of time during C<--reindex>. + +Default: none, uses C + +=back + +=head1 UPGRADING + +Occasionally, public-inbox will update it's schema version and +require a full index by running this command. + +=head1 CONTACT + +Feedback welcome via plain-text mail to L + +The mail archives are hosted at L +and L + +=head1 COPYRIGHT + +Copyright 2021 all contributors L + +License: AGPL-3.0+ L + +=head1 SEE ALSO + +L, L diff --git a/MANIFEST b/MANIFEST index ddee1539..127b7caf 100644 --- a/MANIFEST +++ b/MANIFEST @@ -28,6 +28,7 @@ Documentation/public-inbox-convert.pod Documentation/public-inbox-daemon.pod Documentation/public-inbox-edit.pod Documentation/public-inbox-extindex-format.pod +Documentation/public-inbox-extindex.pod Documentation/public-inbox-httpd.pod Documentation/public-inbox-imapd.pod Documentation/public-inbox-index.pod