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

NAME

Parallel::MapReduce::Sequential - MapReduce Infrastructure, single-threaded

SYNOPSIS

  use Parallel::MapReduce::Sequential;
  my $mri = new Parallel::MapReduce::Sequential
                        (MemCacheds => [ '127.0.0.1:11211', .... ],
                         Workers    => [ '10.0.10.1', '10.0.10.2', ...]);

  # rest like in Parallel::MapReduce

DESCRIPTION

This subclass of Parallel::MapReduce implements MapReduce as a single thread. Like its superclass it uses a memcached server pool to distribute the data and the class can also be used in conjunction of local or remote workers. But everything will happen sequentially.

SEE ALSO

Parallel::MapReduce

COPYRIGHT AND LICENSE

Copyright 200[8] by Robert Barta, <drrho@cpan.org>

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