in reply to Re^4: Using parent and child processes in perl
in thread Using parent and child processes in perl

You would then still have the same problem you started with: a single 4-5 minute HTTP request. The whole point is to have each request finish quickly, which is how we'll avoid the server error you mentioned in the OP.

  • Comment on Re^5: Using parent and child processes in perl

Replies are listed 'Best First'.
Re^6: Using parent and child processes in perl
by perl-nun (Initiate) on Jul 15, 2013 at 05:20 UTC
    Okay, so I redirect from parent and read the $tempfile in a new script then? Thanks a lot!