Bug in Perl or LWP? Or am I missing something?

Jess O'Leary (jess@telecom-pros.com)
Tue, 18 Aug 1998 03:19:12 -0700


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