in reply to Which process management module to switch from Coro?

Many people find LeoNerd's Net::Async::HTTP and accompanying IO::Async and Future to be very useful.

Alternately, there's sri's Mojo::UserAgent. The Mojo::IOLoop makes async requests super simple.

There are, as always, many ways to accomplish this task. Find the one that suits your style best and move along. Hope that helps.
  • Comment on Re: Which process management module to switch from Coro?

Replies are listed 'Best First'.
Re^2: Which process management module to switch from Coro?
by sleet (Pilgrim) on Dec 30, 2016 at 21:35 UTC
    As I said, I'd rather not make fundamental changes if I don't need to. I want to keep the LWP request processing if possible. If I need to rewrite from scratch, I'd prefer AnyEvent since it's API and resource use is better than Net::Async.