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
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.
fork