What are the alternatives to Perl interpreter threads?

后端 未结 3 912
天涯浪人
天涯浪人 2021-02-20 05:34

perldoc threads says:

The use of interpreter-based threads in perl is officially discouraged.

Are there any other Perl based threads

3条回答
  •  星月不相逢
    2021-02-20 06:00

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

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

提交回复
热议问题