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

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

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.


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.