in reply to Fastest XML parser that can run under ActivePerl on Windows?
XML::Simple doesn't do any parsing. It uses one of many parsers. Many users of XML::Simple use XML::SAX::PurePerl as their parser, the slowest of the bunch. (And it has problems with encodings.) According to my tests (which I don't have handy), XML::Simple is fastest when you have it use XML::Parser. XML::LibXML is much faster yet.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Fastest XML parser that can run under ActivePerl on Windows?
by Xenofur (Monk) on Apr 26, 2009 at 22:49 UTC | |
by ikegami (Patriarch) on Apr 26, 2009 at 22:57 UTC | |
by Xenofur (Monk) on Apr 26, 2009 at 22:59 UTC | |
by ikegami (Patriarch) on Apr 27, 2009 at 00:29 UTC |