Marvin Humphrey > KinoSearch-0.30_03 > KinoSearch::Analysis::Stopalizer

Download:
KinoSearch-0.30_03.tar.gz

Annotate this POD

CPAN RT

Open  2
View Bugs
Report a bug
Source   Latest Release: KinoSearch-0.30_071

NAME ^

KinoSearch::Analysis::Stopalizer - Suppress a "stoplist" of common words.

SYNOPSIS ^

    my $stopalizer = KinoSearch::Analysis::Stopalizer->new(
        language => 'fr',
    );
    my $polyanalyzer = KinoSearch::Analysis::PolyAnalyzer->new(
        analyzers => [ $case_folder, $tokenizer, $stopalizer, $stemmer ],
    );

This class uses Lingua::StopWords for its default stoplists, so it supports the same set of languages.

DESCRIPTION ^

A "stoplist" is collection of "stopwords": words which are common enough to be of little value when determining search results. For example, so many documents in English contain "the", "if", and "maybe" that it may improve both performance and relevance to block them.

Before filtering stopwords:

    ( "i", "am", "the", "walrus" ) 

After filtering stopwords:

    ( "walrus" );

Stopalizer provides default stoplists for several languages, courtesy of the Snowball project (<http://snowball.tartarus.org>), or you may supply your own.

CONSTRUCTORS ^

new( [labeled params] )

    my $stopalizer = KinoSearch::Analysis::Stopalizer->new(
        language => 'de',
    );
    
    # or...
    my $stopalizer = KinoSearch::Analysis::Stopalizer->new(
        stoplist => \%stoplist,
    );

INHERITANCE ^

KinoSearch::Analysis::Stopalizer isa KinoSearch::Analysis::Analyzer isa KinoSearch::Obj.

COPYRIGHT ^

Copyright 2005-2009 Marvin Humphrey

LICENSE, DISCLAIMER, BUGS, etc. ^

See KinoSearch version 0.30.