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


Search-Indexer-Incremental-MD5 documentation  | view source Contained in the Search-Indexer-Incremental-MD5 distribution.

Index


NAME

Top

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

SYNOPSIS

Top

  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

Top

This module contains the regex and stopwords specific for Perl.

DOCUMENTATION

Top

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

Top

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

Top

None so far.

AUTHOR

Top

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

LICENSE AND COPYRIGHT

Top

SUPPORT

Top

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

    perldoc Search::Indexer::Incremental::MD5

You can also look for information at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Search-Indexer-Incremental-MD5

* RT: CPAN's request tracker

Please report any bugs or feature requests to L <bug-search-indexer-incremental-md5@rt.cpan.org>.

We will be notified, and then you'll automatically be notified of progress on your bug as we make changes.

* Search CPAN

http://search.cpan.org/dist/Search-Indexer-Incremental-MD5

SEE ALSO

Top

Search::Indexer

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


Search-Indexer-Incremental-MD5 documentation  | view source Contained in the Search-Indexer-Incremental-MD5 distribution.