in reply to server to server communication

You can also try to use threads:
threads->create(sub { get($url); })->detach();
This puts the call the 'get' in the 'background', and allows your main thread to continue working.

Remember: There's always one more bug.