Hello Purveryors of Wisdom,
I have a web-based application that runs a cgi script on execution. The CGI script takes a long time to run (and should).
Does anyone have any suggestions as to how to either:
a. run the cgi/perl as a "forked" process
or
b. dynamically update the web page (cgi generated) so that users don't think the process has stalled.
Bonus: script will continue to run if user closes page.
I've read a little about the "fork" command, but am unsure if this is appropriate in a CGI script.