What is best module for parallel processing in Perl?

后端 未结 4 1183
栀梦
栀梦 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:48

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

    • Parallel::TaskManager
    • POE
    • AnyEvent

    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.

提交回复
热议问题