Uploaded image for project: 'Lucene - Core'
  1. Lucene - Core
  2. LUCENE-644

Contrib: another highlighter approach

Details

    • Improvement
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • None
    • 2.9
    • modules/highlighter
    • None

    Description

      Mark Harwoods highlighter package is a great contribution to Lucene, I've used it a lot! However, when you have large documents (fields), highlighting can be quite time consuming if you increase the number of bytes to analyze with setMaxDocBytesToAnalyze(int). The default value of 50k is often too low for indexed PDFs etcetera, which results in empty highlight strings.

      This is an alternative approach using term position vectors only to build fragment info objects. Then a StringReader can read the relevant fragments and skip() between them. This is a lot faster. Also, this method uses the entire field for finding the best fragments so you're always guaranteed to get a highlight snippet.

      Because this method only works with fields which have term positions stored one can check if this method works for a particular field using following code (taken from TokenSources.java):

      TermFreqVector tfv = (TermFreqVector) reader.getTermFreqVector(docId, field);
      if (tfv != null && tfv instanceof TermPositionVector)

      { // use FulltextHighlighter }

      else

      { // use standard Highlighter }

      Someone else might find this useful so I'm posting the code here.

      Attachments

        1. FulltextHighlighter.java
          13 kB
          Ronnie Kolehmainen
        2. FulltextHighlighter.java
          13 kB
          Ronnie Kolehmainen
        3. FulltextHighlighterTest.java
          16 kB
          Ronnie Kolehmainen
        4. FulltextHighlighterTest.java
          15 kB
          Ronnie Kolehmainen
        5. svn-diff.patch
          31 kB
          Ronnie Kolehmainen
        6. svn-diff.patch
          30 kB
          Ronnie Kolehmainen
        7. TokenSources.java
          17 kB
          Ronnie Kolehmainen
        8. TokenSources.java.diff
          12 kB
          Ronnie Kolehmainen

        Activity

          People

            Unassigned Unassigned
            ronniek Ronnie Kolehmainen
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: