in reply to Xpath value query
I wouldn't use XML::Parser but one of the modules more oriented towards XPath expressions, such as XML::Twig or XML::LibXML. If your data fits in memory (and will do so for some time coming), using XML::LibXML can be considerably faster than XML::Twig, but if there might be a chance that your data will not fit into memory as a DOM tree, XML::Twig is the absolutely best way to go for a parser.
Both modules will give you ways to issue XPath queries against the XML.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Xpath value query
by SDwerner (Initiate) on Sep 17, 2015 at 18:54 UTC | |
by Corion (Patriarch) on Sep 17, 2015 at 19:02 UTC | |
by SDwerner (Initiate) on Sep 17, 2015 at 20:06 UTC | |
by poj (Abbot) on Sep 17, 2015 at 19:50 UTC | |
by SDwerner (Initiate) on Sep 17, 2015 at 20:23 UTC | |
by poj (Abbot) on Sep 17, 2015 at 20:58 UTC | |
by SDwerner (Initiate) on Sep 18, 2015 at 17:08 UTC | |
| |
by SDwerner (Initiate) on Sep 18, 2015 at 15:45 UTC | |
|
Re^2: Xpath value query
by choroba (Cardinal) on Sep 18, 2015 at 12:41 UTC |