16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
*******************************************************************************
**
** This file contains code to implement a search functions
** against timeline comments, check-in content, wiki pages, tickets,
** and/or forum posts.
**
** The search can be either a per-query "grep"-like search that scans
** the entire corpus. Or it can use the FTS4 or FTS5 search engine of
** SQLite. The choice is a administrator configuration option.
**
** The first option is referred to as "full-scan search". The second
** option is called "indexed search".
**
** The code in this file is ordered approximately as follows:
**
** (1) The full-scan search engine
|
|
|
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
*******************************************************************************
**
** This file contains code to implement a search functions
** against timeline comments, check-in content, wiki pages, tickets,
** and/or forum posts.
**
** The search can be either a per-query "grep"-like search that scans
** the entire corpus. Or it can use the FTS4 search engine of SQLite.
** The choice is a administrator configuration option.
**
** The first option is referred to as "full-scan search". The second
** option is called "indexed search".
**
** The code in this file is ordered approximately as follows:
**
** (1) The full-scan search engine
|