vote up 2 vote down star
2

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.

flag

1  
Do you want to parallelize CPU-bound or IO-bound code? – jrockway Oct 21 at 9:59

3 Answers

vote up 8 vote down check

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.

link|flag
vote up 7 vote down

Well, it all depends on particular case. Depending on what you exactly need to achieve, you might be better of with one of following:

For some tasks there are also specialized modules - for example LWP::Parallel::UserAgent, which basically means - you have to give us much more details about what you want to achieve to get best possible answer.

link|flag
vote up 3 vote down

You could also look at threads, Coro, Parallel::Iterator.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.