Hi All, I have designed a script to extract the XML data using XML::DOM::Lite. I have parsed the xml file using the below method

my $parser = XML::DOM::Lite::Parser->new(); my $doc = $parser->parseFile("$file_name");

Then I tried to parse more files, say 30, size of each file is around 5MB and I got "Out of memory" issue.

I understood that I need to dispose the garbage value stored in the memory and I have created a seperate subroutine called dispose() which is just a replica of decycle() method available in Lite, but it is not working as expected. The sub is given below.

sub dispose { my ($self) = @_; foreach (@{$self->childNodes}) { undef $_->{parentNode}; undef $_->{ownerDocument}; if (defined $_->{childNodes}) { $_->decycle(); } } }

I'm calling the method as

 $doc->dispose;

Can any one help me on this.


In reply to How to perform dispose using XML::DOM::Lite by kbraj

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.