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
Most recent versions of Perl have threading support. Run perl -V:usethreads to see if it is available in your system.
perl -V:usethreads
$ perl -V:usethreads usethreads='define'
perldoc threads gives a pretty good introduction to using them.