I have a word multi-strat as my search term. When I query it using query parser the parsing term becomes multi strat and does not retrieve the right hit count. How will I be able to resolve it making the "-" symbol be included in searching and parsing? thanks for the help in advance. :)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use an analyzer which does not break up strings on hyphens. The most simple one is the KeywordAnalyzer, which doesn't break up strings at all, neither does it change the casing. You could wrap it in a PerFieldAnalyzerWrapper if you need to have different analyzers for different fields. |
|||||
|