]> Sergey Matveev's repositories - public-inbox.git/blob - Documentation/public-inbox-index.pod
doc: index.pod: fix mismatched =back
[public-inbox.git] / Documentation / public-inbox-index.pod
1 =head1 NAME
2
3 public-inbox-index - create and update search indices
4
5 =head1 SYNOPSIS
6
7 public-inbox-index [OPTIONS] INBOX_DIR
8
9 =head1 DESCRIPTION
10
11 public-inbox-index creates and updates the search, overview and
12 NNTP article number database used by the read-only public-inbox
13 HTTP and NNTP interfaces.  Currently, this requires
14 L<DBD::SQLite> and L<DBI> Perl modules.  L<Search::Xapian>
15 is optional, only to support the PSGI search interface.
16
17 Once the initial indices are created by public-inbox-index,
18 L<public-inbox-mda(1)> and L<public-inbox-watch(1)> will
19 automatically maintain them.
20
21 Running this manually to update indices is only required if
22 relying on L<git-fetch(1)> to mirror an existing public-inbox;
23 or if upgrading to a new version of public-inbox using
24 the C<--reindex> option.
25
26 Having the overview and article number database is essential to
27 running the NNTP interface, and strongly recommended for the
28 HTTP interface as it provides thread grouping in addition to
29 normal search functionality.
30
31 =head1 OPTIONS
32
33 =over
34
35 =item --reindex
36
37 Forces a search engine re-index of all messages in the
38 repository.  This can be used for in-place upgrades while
39 NNTP/HTTP server processes are utilizing the index.  Keep in
40 mind this roughly doubles the size of the already-large
41 Xapian database.
42
43 This does not touch the NNTP article number database.
44
45 =back
46
47 =head1 FILES
48
49 For v1 (ssoma) repositories described in L<public-inbox-v1-format>.
50 All public-inbox-specific files are contained within the
51 C<$GIT_DIR/public-inbox/> directory.
52
53 v2 repositories are described in L<public-inbox-v2-format>.
54
55 =head1 ENVIRONMENT
56
57 =over 8
58
59 =item PI_CONFIG
60
61 Used to override the default "~/.public-inbox/config" value.
62
63 =item XAPIAN_FLUSH_THRESHOLD
64
65 The number of documents to update before committing changes to
66 disk.  This environment is handled directly by Xapian, refer to
67 Xapian API documentation for more details.
68
69 Default: our indexing code flushes every megabyte of mail seen
70 to keep memory usage low.  Setting this environment variable to
71 any positive value will switch to a document count-based
72 threshold in Xapian.
73
74 =back
75
76 =head1 UPGRADING
77
78 Occasionally, public-inbox will update it's schema version and
79 require a full index by running this command.
80
81 =head1 CONTACT
82
83 Feedback welcome via plain-text mail to L<mailto:meta@public-inbox.org>
84
85 The mail archives are hosted at L<https://public-inbox.org/meta/>
86 and L<http://hjrcffqmbrq6wope.onion/meta/>
87
88 =head1 COPYRIGHT
89
90 Copyright 2016-2019 all contributors L<mailto:meta@public-inbox.org>
91
92 License: AGPL-3.0+ L<https://www.gnu.org/licenses/agpl-3.0.txt>
93
94 =head1 SEE ALSO
95
96 L<Search::Xapian>, L<DBD::SQLite>