Non-blocking / Asynchronous Execution in Perl

后端 未结 6 1937
刺人心
刺人心 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:51

    POE is fine if you want asynchronous processing but using only a single cpu (core) is fine. For example if the app is I/O limited a single process will be enough most of the time.

提交回复
热议问题