in reply to Re: Fastest XML parser that can run under ActivePerl on Windows?
in thread Fastest XML parser that can run under ActivePerl on Windows?

Wow, thanks a lot. That works perfectly. :)

Edit: XML::Parser, i mean. With LibXML it only complains about the ParserDetails.ini missing and still runs slowly.
  • Comment on Re^2: Fastest XML parser that can run under ActivePerl on Windows?

Replies are listed 'Best First'.
Re^3: Fastest XML parser that can run under ActivePerl on Windows?
by ikegami (Patriarch) on Apr 26, 2009 at 22:57 UTC
    I didn't know XML::LibXML could be used with XML::Simple. I didn't benchmark that.
      Apparently you can use it by declaring XML::LibXML::Sax to be the preferred parser. However, this means that apparently you thought of doing it in another way. Mind explaining?
        XML::LibXML can parse XML into a tree like XML::Simple does (altough XML::LibXML uses objects instead of hashes).