in reply to Re: Parse XML of large size
in thread Parse XML of large size

Here is the pretty simple code.

I've dumped XML file into Perl's data structure using XMLin() which itself is taking so much of time.

Rest of the other processing to extract the data is not taking much time for me..

use strict; use warnings; use XML::Simple; use XML::LibXML; my $XML_FILE = 'sample.xml'; # Dump of the XML file in Perl's Data Structures my $mldata = XMLin($XML_FILE);

Replies are listed 'Best First'.
Re^3: Parse XML of large size
by marto (Cardinal) on Dec 01, 2009 at 12:14 UTC

      Why my replies and others replies are not visible for me. I'm confused....

    A reply falls below the community's threshold of quality. You may see it by logging in.
Re^3: Parse XML of large size
by almut (Canon) on Dec 01, 2009 at 12:30 UTC

    BTW, use XML::LibXML is superfluous here, as you're not actually using it anywhere in the code...

      I'm sorry for that. I'm using XML::LibXML to validate my XML against the XSD. I've removed the code while posting.