KinoSearch::Highlight::Highlighter - Create and highlight excerpts.
my $highlighter = KinoSearch::Highlight::Highlighter->new(
searchable => $searcher,
query => $query,
field => 'body'
);
my $hits = $searcher->search( query => $query );
while ( my $hit = $hits->next ) {
my $excerpt = $highlighter->create_excerpt($hit);
...
}
The Highlighter can be used to select relevant snippets from a document, and to surround search terms with highlighting tags. It handles both stems and phrases correctly and efficiently, using special-purpose data generated at index-time.
my $highlighter = KinoSearch::Highlight::Highlighter->new(
searchable => $searcher, # required
query => $query, # required
field => 'content', # required
excerpt_length => 150, # default: 200
);
vectorized (which is the default -- see
FieldSpec).
Take a HitDoc object and return a highlighted excerpt as a string if
the HitDoc has a value for the specified field.
Highlight a small section of text. By default, prepends pre-tag and appends post-tag. This method is called internally by create_excerpt() when assembling an excerpt.
Encode text with HTML entities. This method is called internally by create_excerpt() for each text fragment when assembling an excerpt. A subclass can override this if the text should be encoded differently or not at all.
Setter. The default value is "<strong>".
Setter. The default value is "<strong>".
Setter. The default value is "</strong>".
Accessor.
Accessor.
Accessor.
Accessor for the KinoSearch::Search::Compiler object derived from
query and searchable.
Accessor.
Accessor.
KinoSearch::Highlight::Highlighter isa KinoSearch::Obj.
Copyright 2005-2008 Marvin Humphrey
See KinoSearch version 0.20.