What is best module for parallel processing in Perl?

parallel-processing, perl

Solution

Parallel::ForkManager, as the POD says, can limit the number of processes forked off. You could then use the children to do any work. I remember using the module for a downloader.

Problem

What is best module for parallel process in Perl? I have never done the parallel processing in Perl. What is good Perl module for parallel process which is going to used in DB access and mailing ? I have looked in module Parallel::ForkManager. Any idea appreciated.

Original source