PSeitz-dd
PSeitz-dd
Seems to work like expected to me. `IKK` is a ngram that doesn't match. If you want fuzzy search, this is the recommended way https://github.com/quickwit-oss/tantivy/blob/main/examples/fuzzy_search.rs. It's also possible with ngram,...
@rdettai-sk I refactored aggregations in this PR: https://github.com/quickwit-oss/tantivy/pull/2715
The main difference is that you don't know how many tokens a regex may span when it includes a star. That would affect fetching potential terms, which you would need...