in reply to Fastest XML Parser ?
I maintain a series of benchmarks for various cases named Ways to Rome. The short answer is that the fastest parser is XML::LibXML.
In your case if XML::Simple is that slow, maybe that's because you are using it's default, pure Perl, parser which is really slow. Do you have XML::LibXML or XML::Parser installed? You might also need to set the $XML_SIMPLE_PREFERRED_PARSER (or $XML::Simple::PREFERRED_PARSER) to XML::Parser or XML::LibXML. See the Environment section in the docs of the module.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Fastest XML Parser ?
by renodino (Curate) on Feb 17, 2008 at 20:16 UTC | |
by toolic (Bishop) on Dec 10, 2015 at 02:36 UTC |