From fe006d54f3d32efe6c58db27184a985045b461f3 Mon Sep 17 00:00:00 2001 From: Xiao Yi Fang Date: Fri, 19 Jul 2024 17:26:46 +0800 Subject: [PATCH] opt: record xapian total length --- website/docs/ui_fulltextsearch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/ui_fulltextsearch.md b/website/docs/ui_fulltextsearch.md index b5a5e1b5..64bf559b 100644 --- a/website/docs/ui_fulltextsearch.md +++ b/website/docs/ui_fulltextsearch.md @@ -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.