Hello Everyone, Thanks for taking time to read through this. I'm using a checkout from the solr 3.x branch
My problem is with the highlighter and wildcards, and is exactly the same as this guy's but I can't find a reply to his problem: http://search-lucene.com/m/EARFMs6eR4/partial+highlight+wildcard&subj=Re+old+wildcard+highlighting+behaviour I can get the highlighter to work with wild cards just fine, the problem is that solr is returning the term matched, when what I want it to do is highlight the chars in the term that were matched. Example: http://192.168.1.75:8983/solr/music/select?indent=on&q=name_title:wel*&qt=beyond&hl=true&hl.fl=name_title&f.name_title.hl.usePhraseHighlighter=true&f.name_title.hl.highlightMultiTerm=true The results that come back look like this: <em>Welcome</em> to the Jungle What I want them to look like is this: <em>Wel</em>come to the Jungle From what I gathered by searching the archives is that solr 1.1 used to do this... Is there anyway to get what I want without customizing the highlighting feature? Thanks!