Skip to content

Commit

Permalink
opt: record xapian total length
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyifang committed Jul 19, 2024
1 parent eb3b2ae commit 46ffd94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/ui_fulltextsearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Search modes
* "Default" — This follows the [xapian search syntax](https://xapian.org/docs/queryparser.html).
Note that phrase and NEAR search needs the positional information when indexing. The positional information will make the xapian index file too big. The program has used a balanced way to enable or disable the positional information automatically based on the total document length.which means the positional information will not be disabled when the ditionary has reached the limit.
* "Plain text" - mode like "Whole words" but every word in search line can be treated as word fragment.
* "Wildcards" - the search line contains a Unix-like template. Such template can contain wildcard symbols `?` (matches any one character), `*` (matches any character number) or ranges of characters `[...]` To find characters `?`, `*`, `[` and `]` it should be escaped by backslash like `\?`, `\*`, `\[`, `\]`.
* "Wildcards" - As xapian index only support wildcard syntax like this "hell*" , the wildcard in the middle(eg."he*lo") is not supported.

"Available dictionaries in group" - here you can view how many dictionaries in the current group are suitable for full-text search, how many dictionaries already indexed and how many dictionaries wait for indexing.

Expand Down

0 comments on commit 46ffd94

Please sign in to comment.