in reply to HTML::TableExtract Memory Usage

Its related to HTML::ElementTable, it leaks memory
perl -MHTML::ElementTable -e " for(;;){ my $c = HTML::ElementTable->ne +w; warn $c; undef $c; } "

Replies are listed 'Best First'.
Re^2: HTML::TableExtract Memory Usage
by Anonymous Monk on Sep 04, 2010 at 07:33 UTC
    This also leaks
    perl -MHTML::ElementTable -e " for(;;){ my $c = HTML::ElementTable->ne +w; warn $c; $c->delete; undef $c; } "