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

Thanks a lot! One last question, instead of redirecting, I would also be able to process the content of the $tempfile inside the parent itself, won't i? Once again, thanks a bunch!
  • Comment on Re^4: Using parent and child processes in perl

Replies are listed 'Best First'.
Re^5: Using parent and child processes in perl
by rjt (Curate) on Jul 15, 2013 at 04:55 UTC

    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.

      Okay, so I redirect from parent and read the $tempfile in a new script then? Thanks a lot!