Keyword repeat #4072
-
How to emulate keyword repeat in quickwit/tantivy?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Same thing as for lucene. Tokenizer can emit token with the a notion of position and token length. But you would have to modify the stemmer tokenizer to keep the original token to have that work. |
Beta Was this translation helpful? Give feedback.
Same thing as for lucene. Tokenizer can emit token with the a notion of position and token length.
https://blog.mikemccandless.com/2012/04/lucenes-tokenstreams-are-actually.html
But you would have to modify the stemmer tokenizer to keep the original token to have that work.