Non-blocking / Asynchronous Execution in Perl

后端 未结 6 1939
刺人心
刺人心 2021-02-13 13:09

Is there a way to implement non-blocking / asynchronous execution (without fork()\'ing) in Perl?

I used to be a Python developer for many years... Python has really great

6条回答
  •  清酒与你
    2021-02-13 13:49

    Coro is a mix between POE and threads. From reading its CPAN documentation, I think that IO::Async does real asynchronous execution. threads can be used too - at least Padre IDE successfully uses them.

提交回复
热议问题