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

I didn't know XML::LibXML could be used with XML::Simple. I didn't benchmark that.
  • Comment on Re^3: Fastest XML parser that can run under ActivePerl on Windows?

Replies are listed 'Best First'.
Re^4: Fastest XML parser that can run under ActivePerl on Windows?
by Xenofur (Monk) on Apr 26, 2009 at 22:59 UTC
    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).