The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Search::Indexer::Incremental::MD5::Language::Perl - defined perl specific data to use with Search::Indexer

SYNOPSIS

  my @perl_extra_arguments = get_perl_word_regex_and_stopwords()  ;
  
  my $searcher 
        = eval 
                {
                Search::Indexer::Incremental::MD5::Searcher->new
                        (
                        ...
                        @perl_extra_arguments,
                        );
                } or croak "No full text index found! $@\n" ;

DESCRIPTION

This module contains the regex and stopwords specific for Perl.

DOCUMENTATION

The word regex and stopwords available in this module are specific for the Perl language. They regex allows Search::Indexer to precisely find what Perl considers as a word while the stop words limit the number of word indexed.

SUBROUTINES/METHODS

get_perl_word_regex_and_stopwords()

creates a $word_regex and $stopwords for the perl language

Arguments - None

Returns - a list of tuples

(WORD_REGEX => $word_regex) - a key and a regex defining a word in the Perl language
(STOPWORDS => $stopwords) - a key and an array reference containing words to ignore in the Perl language

Exceptions - None

BUGS AND LIMITATIONS

None so far.

AUTHOR

        Nadim ibn hamouda el Khemir
        CPAN ID: NKH
        mailto: nadim@cpan.org

LICENSE AND COPYRIGHT

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Search::Indexer::Incremental::MD5

You can also look for information at:

SEE ALSO

Search::Indexer

Search::Indexer::Incremental::MD5::Indexer and Search::Indexer::Incremental::MD5::Searcher