
KinoSearch::Highlight::Highlighter - Create and highlight excerpts.

The KinoSearch code base has been assimilated by the Apache Lucy project. The "KinoSearch" namespace has been deprecated, but development continues under our new name at our new home: http://lucy.apache.org/

my $highlighter = KinoSearch::Highlight::Highlighter->new(
searcher => $searcher,
query => $query,
field => 'body'
);
my $hits = $searcher->hits( 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(
searcher => $searcher, # required
query => $query, # required
field => 'content', # required
excerpt_length => 150, # default: 200
);
highlightable (see FieldType).
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>".
Accessor.
Setter. The default value is "</strong>".
Accessor.
Accessor.
Accessor.
Accessor for the KinoSearch::Search::Compiler object derived from query and searcher.
Accessor.
Accessor.

KinoSearch::Highlight::Highlighter isa KinoSearch::Object::Obj.

Copyright 2005-2011 Marvin Humphrey
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.