1 package Search
::Xapian
::Stem
;
7 # In a new thread, copy objects of this class to unblessed, undef values.
16 Search::Xapian::Stem - Snowball stemmer
20 my $stemmer = Search::Xapian::Stem->new('norwegian');
21 my $stemmed_foo = $stemmer->stem_word($foo);
31 Constructor. Takes the language to stem as a parameter.
33 =item stem_word <word>
35 Returns the stemmed form of the given word.
42 L<Search::Xapian::QueryParser>,
43 L<Search::Xapian::TermGenerator>