Jim Lynch wrote:
I've read as much as I could find on the highlighting that is now in the sandbox. I didn't find the javadocs.
I have a copy here:
http://www.searchmorph.com/pub/jakarta-lucene-sandbox/contributions/highlighter/build/docs/api/overview-summary.html
I found a link to them, but it
redirected my to a cvs tree.
Do I assume that you have to store the content of the document for the highlighting to work?
Not per se, but you do need access to the contents to pass to Highlighter.getBestFragments(). You can store the contents in the index, or you can have in a cache, DB, or you can refetch the doc...
You need to know what Analyzer you used too to get the tokenStream via:
TokenStream tokenStream = analyzer.tokenStream( field, new StringReader(body));
Otherwise I don't see how it could work.
Thanks, Jim.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]