http://qs321.pair.com?node_id=746090


in reply to Re^2: Help On Perl - Multi Threading
in thread Help On Perl - Multi Threading

You might learn something from an article I wrote about using Perl threads in little toy app:

http://www.perl.com/lpt/a/667

Personally I prefer to use fork and pipes for IPC when I'm doing parallel programming with Perl. Perl's threads are too slow and the problems using non-thread-safe XS modules are too painful.

-sam