Interface IScorer
A IScorer is responsible for scoring a stream of tokens. These token scores
can then be used to compute Text
Namespace: Lucene.Net.Search.Highlight
Assembly: Lucene.Net.Highlighter.dll
Syntax
public interface IScorer
Properties
| Improve this Doc View SourceFragmentScore
Called when the Highlighter has no more tokens for the current fragment -
the IScorer returns the weighting it has derived for the most recent
fragment, typically based on the results of Get
Declaration
float FragmentScore { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceGetTokenScore()
Called for each token in the current fragment. The Highlighter will
increment the
Declaration
float GetTokenScore()
Returns
Type | Description |
---|---|
System. |
a score which is passed to the Highlighter class to influence the mark-up of the text (this return value is NOT used to score the fragment) |
Init(TokenStream)
Called to init the Scorer with a
Declaration
TokenStream Init(TokenStream tokenStream)
Parameters
Type | Name | Description |
---|---|---|
Token |
tokenStream | the |
Returns
Type | Description |
---|---|
Token |
either a |
StartFragment(TextFragment)
Called when a new fragment is started for consideration.
Declaration
void StartFragment(TextFragment newFragment)
Parameters
Type | Name | Description |
---|---|---|
Text |
newFragment | the fragment that will be scored next |