in reply to Re: Detached forking in a CGI script
in thread Detached forking in a CGI script

Looking at Proc::Background, it appears to use fork and exec.

So I would say that Fork the correct tool for the job

Replies are listed 'Best First'.
Re^3: Detached forking in a CGI script
by stevieb (Canon) on Apr 29, 2016 at 22:08 UTC

    Pedantic..., I'll rephrase... "this job appears much easier when using a known-working module that shadows what you want to do in the background, with a nice, clean API".

    Out of curiosity, what working suggestions do you have? ;)

      Oh, I completely agree w/ using a clean API, which I would say Proc::Background is.

      I personally try to stick to the KISS mentally