Search::Xapian::Stem - Snowball stemmer


Search-Xapian documentation Contained in the Search-Xapian distribution.

Index


Code Index:

NAME

Top

Search::Xapian::Stem - Snowball stemmer

SYNOPSIS

Top

    my $stemmer = Search::Xapian::Stem->new('norwegian');
    my $stemmed_foo = $stemmer->stem_word($foo);

DESCRIPTION

Top

METHODS

Top

new <language>

Constructor. Takes the language to stem as as parameter.

stem_word <word>

Returns the stemmed form of the given word.

SEE ALSO

Top

Search::Xapian, Search::Xapian::QueryParser, Search::Xapian::TermGenerator


Search-Xapian documentation Contained in the Search-Xapian distribution.

package Search::Xapian::Stem;

use 5.006;
use strict;
use warnings;

# In a new thread, copy objects of this class to unblessed, undef values.
sub CLONE_SKIP { 1 }

1;

__END__