Hi,
The simple code below, using LWP::Simple, balloons to about 15megs after
400 or so passes through the loop. Any ideas why? I'm using the latest
versions of both Perl and LWP with BSD ...
foreach (@urls) {
$doc = get $_;
if ($doc =~ /$query/i) { $i++; }
}
Thanks for any insight,
Jess O'Leary