opt: record xapian total length

This commit is contained in:
Xiao Yi Fang 2024-07-19 17:26:46 +08:00 committed by xiaoyifang
parent 8417e36c1f
commit fe006d54f3

View file

@ -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.