in reply to Parallel::Iterator to get multiple pages

try
my $worker = sub { my ($index,$ar) = @_; my ($name,$username,$pass,$url,$enable) = @$ar; .. }
poj

Replies are listed 'Best First'.
Re^2: Parallel::Iterator to get multiple pages
by McA (Priest) on Aug 25, 2013 at 12:11 UTC

    Hi poj,

    I'm pretty sure your hint is the solution. May I have an annotation: If this hurdle is taken Elwood1 would get problems with his return values.

    Wrap return code and return content into an anonymous array.

    return ( $index, [ $response->code(), $content ]);

    As far as I can see from the man page only one return value is allowed besides the index.

    McA