I have some long running code that I'd like to execute after rendering in a Mojolicious app.
I'd like to avoid using Minion queues as I'd be calling many very short processes, and I've looked into Mojolicious::Plugin::ForkCall and Mojolicious::Plugin::Subprocess but they both timeout (as the short processes get called many times).
I remember coming across an example of this somewhere but cannot find it anymore.
Any help?