in reply to Re^3: Parallel::Forkmanager question
in thread Parallel::Forkmanager question

Regarding mce_loop or MCE::Loop->run(...), both do the same thing. The latter requires the comma after the block.

MCE::Loop->init( ... ); mce_loop { } @data; MCE::Loop->finish; # versus MCE::Loop->init( ... ); MCE::Loop->run( sub { ... }, @data ); MCE::Loop->finish;