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


in reply to Can we write multi-threaded scripts ?

That warning is poppycock. It should be removed. The developers of Perl explained that it means "The use of interpreter-based threads in perl is officially discouraged if you want a lightweight system for multitasking". In other words, it's completely redundant with the previous paragraph.

Since creating new threads can be expensive, just use a model that involves reusable worker threads.

  • Comment on Re: Can we write multi-threaded scripts ?