in reply to Parallel::Iterator to get multiple pages
G'day Elwood1,
Welcome to the monastery.
You really should let Perl tell you what you've done wrong (or even questionably): it's a lot quicker and far less effort than posting on a forum and waiting for someone to reply. Here's some of the things you could have done with an indication of the feedback you would have got:
So, Perl would have reported all those issues if you'd added the following short code to the start of your script.
use strict; use warnings; use autodie;
Note that this is far less typing than what you wrote in this post and the feedback is immediate!
There's two other potential problems that I can see (that doesn't mean there isn't more). Fixing the issues already highlighted may resolve these depending on how you rewrite your code; however, as the code currently stands:
I concur with ww's comments. A better question will get you better answers: guidelines for doing so are provided by "How do I post a question effectively?".
-- Ken
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Parallel::Iterator to get multiple pages
by Elwood1 (Initiate) on Aug 25, 2013 at 05:32 UTC | |
by afoken (Chancellor) on Aug 25, 2013 at 10:29 UTC | |
by Elwood1 (Initiate) on Aug 25, 2013 at 10:32 UTC |