As a follow up to my other question here: Forking to Run Code in a Child Process With Perl's Dancer - how do I fork a request running under plackup/starman/dancer without causing the child to be left in the zombie state?
eg of what I'm trying to do:
post '/handle_data' => sub {
# perform some calculations
...
# store some data
...
fork and return; # parent request
# do some long running tasks
...
exit; # child
};
... causes the starman worker to be recycled, but a leftover plackup process to be defunct.
From perlipc, I have also tried setting $SIG{CHLD} = "IGNORE", but to no avail.