in reply to Perl fork and http::request
First of all, putting Perl code into <code> ... </code> tags helps immensely with the readability.
Second, the fork() support in ActiveState Perl and Win32 is marginal at best. It's there, and there are situations in which it works, but implementing fork() on a Win32 platform is mostly done by copying the whole process space, and some things are not copied. So you will have to find alternatives to using fork(), for example nonblocking sockets or in your case maybe LWP::Parallel.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Perl fork and http::request
by Anonymous Monk on Feb 02, 2001 at 04:05 UTC |