]> Sergey Matveev's repositories - public-inbox.git/blob - Documentation/public-inbox-index.pod
git: ensure ->modified returns an integer
[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 =back
56
57 =head1 ENVIRONMENT
58
59 =over 8
60
61 =item PI_CONFIG
62
63 Used to override the default "~/.public-inbox/config" value.
64
65 =item XAPIAN_FLUSH_THRESHOLD
66
67 The number of documents to update before committing changes to
68 disk.  This environment is handled directly by Xapian, refer to
69 Xapian API documentation for more details.
70
71 Default: our indexing code flushes every megabyte of mail seen
72 to keep memory usage low.  Setting this environment variable to
73 any positive value will switch to a document count-based
74 threshold in Xapian.
75
76 =back
77
78 =head1 UPGRADING
79
80 Occasionally, public-inbox will update it's schema version and
81 require a full index by running this command.
82
83 =head1 CONTACT
84
85 Feedback welcome via plain-text mail to L<mailto:meta@public-inbox.org>
86
87 The mail archives are hosted at L<https://public-inbox.org/meta/>
88 and L<http://hjrcffqmbrq6wope.onion/meta/>
89
90 =head1 COPYRIGHT
91
92 Copyright 2016-2019 all contributors L<mailto:meta@public-inbox.org>
93
94 License: AGPL-3.0+ L<https://www.gnu.org/licenses/agpl-3.0.txt>
95
96 =head1 SEE ALSO
97
98 L<Search::Xapian>, L<DBD::SQLite>