For example let's say a request comes into mojolicious which is then making an outbound http request to an API to get some data while not blocking the user in the meantime.
Is that IO job and how would Mojo handle it?what if instead of the http request I want to asynchronously make a lengthy calculation and then return a value to the user? Is that handled by the event loop too?