Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Now, I am convinced that it is possible to avoid the timeout problem using multiple forks. Is that a possibility? Or is there something better? Thanks a lot for your help, Adrien...beginning of subroutine $pid = fork(); $pid; if ($pid) { print "The mailing has began"; exit(0); } else { close (STDOUT); ...actual mailing
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: fork and mailing lists
by joealba (Hermit) on Nov 03, 2001 at 19:59 UTC | |
by Anonymous Monk on Nov 03, 2001 at 21:10 UTC |