Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been reading the new 2nd edition of the Lucene in Action and they give an example of doing highlighting but unfortunately it requires the original text so it can get the position of terms etc. The highlighter is the official one in contrib, so that implies its the sponsorted or official highlighter.

Does anyone know of another highlighter that does not require the original text but works using the term positions (sorry if i got the terminology wrong) ???

share|improve this question
I don't understand what your question is really - what would you be highlighting, if not the text? – Xodarap Sep 24 '10 at 20:19
Some highlighters need the original text and then analyze the query and proceed to highlight. What i meant was that the highlighter would build the text fragment from the index without having access to the original text. – mP. Sep 24 '10 at 22:39

1 Answer

up vote 0 down vote accepted

Both the standard highlighter and FastVectorHighlighter can use the index if you store the terms. (FVH can only use the index, in fact). You can see an example of this on page 274 of Lucene in Action. The relevant code line is:

TokenStream stream = TokenSources.getAnyTokenStream(searcher.getIndexReader(), sd.doc, "title", doc, analyzer);

That will get the token stream from the index.

share|improve this answer
Thinking a bit more, i think my original q is flawed because not all terms are stored (eg stop words) so its not possible to build an accurate original fragment for highlighting purposes. Is this a correct assumption ? – mP. Sep 28 '10 at 3:10
If you analyze your text in a way which removes stop words, then yes, stop words will be removed. What I do is have two copy fields, one which is indexed but not stored, the other stored but not indexed. The indexed one is stemmed etc. The stored one just uses a whitespace tokenizer. This actually takes the same amount of space as a stored+indexed field, and will get over the issue you described about stop words being removed. – Xodarap Sep 28 '10 at 14:25
1  
which basically amounts to storing the original text in full form along with the analyzed form - thanks for the tips... – mP. Sep 28 '10 at 14:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.