What modules should I look at for doing multithreading in Perl?

后端 未结 5 1383
迷失自我
迷失自我 2021-02-09 12:05

What modules should I look at for doing multithreading in Perl?

I\'m looking to do something fairly low performance; I want threads is to run multiple workers simultaneo

5条回答
  •  孤独总比滥情好
    2021-02-09 12:33

    If performance isn't a big issue, then forking multiple processes will probably be a lot easier than dealing with threads. I frequently use Parallel::ForkManager which is very simple, but very good at what it does.

提交回复
热议问题