-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Labels
Description
Hi David,
First of all I want to thank you for the contribution. Solr text tagger has really helped in building the solution we wanted.
However, as an extension, I am looking to use ShingleFilterFactory instead of ConcatenateFilter. And the reason is that I also want to enable partial matches as suggestions.
But I want to enable suggestions which only match from left edge and not in the middle.
For Ex - if the text is "Quick brown fox jumped"
Then the expected tokens should be -
"Quick"
"Quick brown"
"Quick brown fox"
"Quick brown fox jumped"
But using ShingleFilter produces extra token such as -
"brown fox"
"fox jumped"
etc
I would be really grateful if you can guide me on how to achieve it.
Best,
Amit