Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Does anyone know of a LWP::Parallel equivalent for windows?

Replies are listed 'Best First'.
Re: LWP::Parallel
by perrin (Chancellor) on Jun 19, 2002 at 16:33 UTC
    Are you sure it won't work on Windows? It uses a select loop, which should be supported on Win32.

    If you explain what you're trying to do, people might be able to offer better suggestions. LWP::Parallel is a cool hack, but in practice it doesn't have great performance.

Use ActiveState's ppm
by enoch (Chaplain) on Jun 19, 2002 at 17:56 UTC
    ActiveState's Perl comes with ppm, which is a package manager for Perl modules.
    C:\>ppm PPM interactive shell (2.1.2) - type 'help' for available commands. PPM> set repository ACTIVESTATE http://www.activestate.com/Packages/ PPM> install LWP::Parallel
    And, there you have it.

    Jeremy