What is best module for parallel processing in Perl?

后端 未结 4 1181
栀梦
栀梦 2021-02-02 00:19

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 use

4条回答
  •  北海茫月
    2021-02-02 00:44

    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.

提交回复
热议问题