|
|
-
Re: solr 1.4 highlighting issueKoji Sekiguchi 2011-09-14, 11:20
(11/09/14 15:54), Dmitry Kan wrote:
> Hello list, > > Not sure how many of you are still using solr 1.4 in production, but here is > an issue with highlighting, that we've noticed: > > The query is: > > (drill AND ships) OR rigs > > > Excerpt from the highlighting list: > > <arr name="Contents"> > <str> > Within the fleet of 27 floatingrigs (semisubmersibles and > drillships) are 21 deepwaterdrilling > </str> > </arr> > </lst> > > > > Why did solr highlight "drilling" even though there is no "ships" in the > text? > Dmitry, This is expected, even if you use the latest version of Solr. You got the document because rigs was hit in the document, but then Highlighter tries to search individual terms of the query in the document again. koji -- Check out "Query Log Visualizer" for Apache Solr http://www.rondhuit-demo.com/loganalyzer/loganalyzer.html http://www.rondhuit.com/en/ |