RE: Help With Phrase Highlighting

2015-12-03 Thread Teague James
Thanks everyone who replied! The FastVectorHighlighter did the trick. Here is how I configured it: In solrconfig.xml: In the requestHandler I added: on text true 100 In schema.xml: I modified the text field: I restarted Solr, re-indexed the documents and tested. All phrases are correctly highli

Re: Help With Phrase Highlighting

2015-12-01 Thread Koji Sekiguchi
indexed with options termVectors=true, termPositions=true and termPositions=true. Good luck! Koji On 2015/12/02 5:36, Teague James wrote: Hello everyone, I am having difficulty enabling phrase highlighting and am hoping someone here can offer some help. This is what I have currently: Sol

Re: Help With Phrase Highlighting

2015-12-01 Thread Teague James
tiguous=true ? > > On Tue, Dec 1, 2015 at 3:36 PM, Teague James > wrote: > >> Hello everyone, >> >> I am having difficulty enabling phrase highlighting and am hoping someone >> here can offer some help. This is what I have currently:

Re: Help With Phrase Highlighting

2015-12-01 Thread Philippe Soares
Hi, Did you try hl.mergeContiguous=true ? On Tue, Dec 1, 2015 at 3:36 PM, Teague James wrote: > Hello everyone, > > I am having difficulty enabling phrase highlighting and am hoping someone > here can offer some help. This is what I have currently: > > Solr 4.9 > solrcon

Help With Phrase Highlighting

2015-12-01 Thread Teague James
Hello everyone, I am having difficulty enabling phrase highlighting and am hoping someone here can offer some help. This is what I have currently: Solr 4.9 solrconfig.xml (partial snip) xml explicit 10

Re: Contiguous Phrase Highlighting Example

2014-07-17 Thread Koji Sekiguchi
Hi Teague, If you want phrase-unit tagging for highlighter, you need to use FastVectorHighlighter instead of the ordinary Highlighter. To turn on FVH, set hl.useFastVectorHighlighter=on when querying. In addition, when indexing, you need to set termVectors=on, termPositions=on and termOffsets=on

Contiguous Phrase Highlighting Example

2014-07-17 Thread Teague James
Hi everyone! Does anyone have any good examples of generating a contiguous highlight for a phrase? Here's what I have done: curl http://localhost/solr/collection1/update?commit=true -H "Content-Type: text/xml" --data-binary '100blah blah blah knowledge of science blah blah blah' Then, using a br

Re: Exact phrase highlighting

2011-06-27 Thread okayndc
has this bug been fixed? i'm using solr 3.1 and it still seems to be an issue. if i do a search for "bird house" i still get bird house returned instead of bird house, which is the desired result. -- View this message in context: http://lucene.472066.n3.nabble.com/Exact-phra

Re: Phrase Highlighting with special characters

2010-08-18 Thread Kranti K K Parisa
Seems the following is working query.setHighlight(true).setHighlightSnippets(1); query.setHighlightSimplePre(""); query.setHighlightSimplePost(""); query.setHighlightFragsize(1000); query.setParam("hl.fl", ""); also I was reading something about (I

Phrase Highlighting with special characters

2010-08-18 Thread Kranti K K Parisa
Hi All, I am trying with Solr Highlighting. I have problem in highlighting phrases consists of special characters for example, if I search for a phrase like "united. states. usa" then the results are displayed matching the exact phrase and also without special characters means "united states us

Re: phrase highlighting

2010-06-26 Thread Lukas Kahwe Smith
On 26.06.2010, at 16:30, Lukas Kahwe Smith wrote: > > On 26.06.2010, at 16:22, Koji Sekiguchi wrote: > >> (10/06/26 22:19), Lukas Kahwe Smith wrote: >>> Hi, >>> >>> Form googling and looking at jira tickets it seems like phrase highlighting >>

Re: phrase highlighting

2010-06-26 Thread Lukas Kahwe Smith
On 26.06.2010, at 16:22, Koji Sekiguchi wrote: > (10/06/26 22:19), Lukas Kahwe Smith wrote: >> Hi, >> >> Form googling and looking at jira tickets it seems like phrase highlighting >> should work out of the box, but even enabling it manually didnt get me the

Re: phrase highlighting

2010-06-26 Thread Koji Sekiguchi
(10/06/26 22:19), Lukas Kahwe Smith wrote: Hi, Form googling and looking at jira tickets it seems like phrase highlighting should work out of the box, but even enabling it manually didnt get me the desired result: http://resolutionfinder.org/search?q=%22security+council%22&=&tm=any&

phrase highlighting

2010-06-26 Thread Lukas Kahwe Smith
Hi, Form googling and looking at jira tickets it seems like phrase highlighting should work out of the box, but even enabling it manually didnt get me the desired result: http://resolutionfinder.org/search?q=%22security+council%22&=&tm=any&s=Search generates the following

AW: phrase highlighting

2008-06-02 Thread Stefan Oestreicher
: Brian Whitman [mailto:[EMAIL PROTECTED] Gesendet: Montag, 02. Juni 2008 15:57 An: solr-user@lucene.apache.org Betreff: Re: phrase highlighting On Jun 2, 2008, at 9:51 AM, Stefan Oestreicher wrote: > (http://www.nabble.com/-jira--Commented:-(SOLR-553)-Highlighter-does-n > ot-mat >

Re: phrase highlighting

2008-06-02 Thread Brian Whitman
On Jun 2, 2008, at 9:51 AM, Stefan Oestreicher wrote: (http://www.nabble.com/-jira--Commented:-(SOLR-553)-Highlighter-does-not-mat ch-phrase-queries-correctly-p17234014.html) It deployed without problems and the info section in the admin panel correctly (?) reports the solr version as "Solr

phrase highlighting

2008-06-02 Thread Stefan Oestreicher
Hi, in order to use phrase highlighting I built a war from the current svn trunk. (http://www.nabble.com/-jira--Commented:-(SOLR-553)-Highlighter-does-not-mat ch-phrase-queries-correctly-p17234014.html) It deployed without problems and the info section in the admin panel correctly (?) reports the

Re: Exact phrase highlighting

2007-09-19 Thread Mike Klaas
On 19-Sep-07, at 2:39 PM, Marc Bechler wrote: Hi Mike, thanks for the quick response. > It would make a great project to get one's hands dirty contributing, though :) ... sounds like giving a broad hint ;-) Sounds challenging... I'm not sure about that--it is supposed to be a drop-in rep

Re: Exact phrase highlighting

2007-09-19 Thread Marc Bechler
Hi Mike, thanks for the quick response. > It would make a great project to get one's hands dirty contributing, though :) ... sounds like giving a broad hint ;-) Sounds challenging... Regards from Germany marc

Re: Exact phrase highlighting

2007-09-19 Thread Mike Klaas
On 19-Sep-07, at 1:12 PM, Marc Bechler wrote: Hi out of there, I just walked through the mailing list archive, but I did not find an appropriate answer for phrase highlighting. I do not have any highlighting section (and no dismax handler definition) in solrconfig.xml. This way (AFAIK

Exact phrase highlighting

2007-09-19 Thread Marc Bechler
Hi out of there, I just walked through the mailing list archive, but I did not find an appropriate answer for phrase highlighting. I do not have any highlighting section (and no dismax handler definition) in solrconfig.xml. This way (AFAIK :-)), the standard lucene query syntax should be