logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Plucene::Analysis::StopFilter - the stop filter

Description

       This removes stop words from a token stream.

       Instances of the StopFilter class are tokens filters that removes from the indexed text words of your
       choice. Typically this is used to filter out common words ('the', 'a' 'if' etc) that increase the
       overhead but add no value during searches.

Methods

next
               my $next = $stop_filter->next;

       This returns the next input token whose term is not a stop word.

perl v5.36.0                                       2022-12-04                 Plucene::Analysis::StopFilter(3pm)

Name

       Plucene::Analysis::StopFilter - the stop filter

Synopsis

               # isa Plucene::Analysis::TokenFilter

               my $next = $stop_filter->next;

See Also