You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The FTS5 trigram tokenizer allows matching substrings in general (rather than only complete tokens or prefix tokens), but it does not match substrings shorter than 3 unicode characters. Supporting short tokens is required (e.g. general structure contains mainly short forms like V DO), so if substring matching is desired a different solution than SQLite FTS is needed.
Prefix tokens are supported by the (default) unicode61 tokenizer, which is used now.
The text was updated successfully, but these errors were encountered:
The FTS5 trigram tokenizer allows matching substrings in general (rather than only complete tokens or prefix tokens), but it does not match substrings shorter than 3 unicode characters. Supporting short tokens is required (e.g. general structure contains mainly short forms like
V DO
), so if substring matching is desired a different solution than SQLite FTS is needed.Prefix tokens are supported by the (default)
unicode61
tokenizer, which is used now.The text was updated successfully, but these errors were encountered: