You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2011/09/14 15:25:25 UTC

[Solr Wiki] Update of "HighlightingParameters" by KojiSekiguchi

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "HighlightingParameters" page has been changed by KojiSekiguchi:
http://wiki.apache.org/solr/HighlightingParameters?action=diff&rev1=32&rev2=33

    </lst>
  </fragmentsBuilder>
  }}}
+ 
+ == hl.boundaryScanner ==
+ Specify the name of SolrBoundaryScanner. <!> [[Solr 3.5]] This parameter makes sense for FastVectorHighlighter only.
+ 
+ === hl.bs.maxScan ===
+ Specify the length of characters to be scanned by SimpleBoundaryScanner. default is 10. <!> [[Solr 3.5]] This parameter makes sense for FastVectorHighlighter only.
+ 
+ === hl.bs.chars ===
+ Specify the boundary characters, used by SimpleBoundaryScanner. default is ".,!?\t\n" and space. <!> [[Solr 3.5]] This parameter makes sense for FastVectorHighlighter only.
+ 
+ === hl.bs.type ===
+ Specify one of CHARACTER, WORD, SENTENCE and LINE, used by BreakIteratorBoundaryScanner. default is WORD. <!> [[Solr 3.5]] This parameter makes sense for FastVectorHighlighter only.
+ 
+ === hl.bs.language ===
+ Specify the language for Locale that is used by BreakIteratorBoundaryScanner. <!> [[Solr 3.5]] This parameter makes sense for FastVectorHighlighter only.
+ 
+ === hl.bs.country ===
+ Specify the country for Locale that is used by BreakIteratorBoundaryScanner. <!> [[Solr 3.5]] This parameter makes sense for FastVectorHighlighter only.
+ 
  == hl.useFastVectorHighlighter ==
  Use FastVectorHighlighter. FastVectorHighlighter requires the field is termVectors=on, termPositions=on and termOffsets=on. This parameter accepts per-field overrides.  <!> [[Solr3.1]]