in reply to Which XML parser would be the wisest to use
Can your data fit in an XML::LibXML DOM (ie in XML::LibXML is tree mode)? If it does then go for it. That will be the fastest you can get in Perl.
If not XML::Parser is probably the fastest you can get: XML::Twig and XML::Rules are based on it, and are usually slower. Surprisingly, I found that SAX, whether based on XML::Parser or on XML::LibXML, is very slow (see at the end of Simple Perl XML Benchmark).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Which XML parser would be the wisest to use
by wardy3 (Scribe) on Feb 21, 2008 at 06:05 UTC | |
by mirod (Canon) on Feb 21, 2008 at 07:49 UTC | |
by wardy3 (Scribe) on Feb 28, 2008 at 07:47 UTC |