- or download this
my @work = fetch_jobs($starting_condition);
while ( @work ) {
# ...
}
- or download this
my @work = fetch_jobs($starting_condition);
while ( @work ) {
...
# process job
}
- or download this
my @work = fetch_jobs($starting_condition);
my %seen;
...
# process job
}
- or download this
my @work = fetch_jobs($starting_condition);
my %seen;
while ( @work && @work < 1000 ) {
# ...
}