J Nima
J Nima

Reputation: 51

Solr Highlighting not returned when wildcard included in "q"

Problem - QueryResponse > highlighting is null when search has wildcard.

Example
q=Text* - does not return highlighting for the matched field
q=Text - returns highlighting for the matched field.

In both scenarios hl info to solr is same, only difference in the search query is "q" as above.

TIA

Upvotes: 1

Views: 102

Answers (1)

J Nima
J Nima

Reputation: 51

I found a solution by setting hl.highlightMultiTerm and searching for Text-space-*

Upvotes: 2

Related Questions