Quantcast
Channel: Is parsing JSON faster than parsing XML - Stack Overflow
Browsing all 12 articles
Browse latest View live

Answer by BitTickler for Is parsing JSON faster than parsing XML

Another reason to stick with XML is, that if you switch to JSON, you modify the "maintenance contract". XML is more typed than JSON is, in the sense that it works more naturally with typed languages...

View Article



Answer by hitesh141 for Is parsing JSON faster than parsing XML

best example i have found about these two is :http://www.utilities-online.info/xmltojson/#.VVGOlfCYK7Mthat means JSON is more human readable and understandable than XML.

View Article

Answer by Mr. Concolato for Is parsing JSON faster than parsing XML

It also depends on how your JSON is structured. Tree-like structures tend to parse more efficiently than a list of objects. This is where one's fundamental understanding of data structures will be...

View Article

Answer by geme_hendrix for Is parsing JSON faster than parsing XML

Firstly, I'd like to say thanks to everyone who's answered my question. I REALLY appreciate all of your responses.In regards to this question, I've conducted some further research by running some...

View Article

Answer by StaxMan for Is parsing JSON faster than parsing XML

If possible, it would make sense to just measure it. By 'if possible' I mean that tooling for javascript (esp. for performance analysis) may not be quite as good as for stand-alone programming...

View Article


Answer by Alex Vidal for Is parsing JSON faster than parsing XML

In this situation, I'd say stick with the XML. All major browsers have a DOM parsing interface that will parse well-formed XML. This link shows a way to use the DOMParser interface in...

View Article

Answer by Anon for Is parsing JSON faster than parsing XML

Performance isn't really a consideration, assuming that you're not talking about gigabytes of XML. Yes, it will take longer (XML is more verbose), but it's not going to be something that the user will...

View Article

Answer by justkt for Is parsing JSON faster than parsing XML

Benchmarks have been done. Here's one. The difference in some of the earlier browsers appeared to be an entire order of magnitude (on the order of 10s of milliseconds instead of 100s of ms), but not...

View Article


Answer by oezi for Is parsing JSON faster than parsing XML

the difference in performace will be so tiny, you wouldn't even notice it (and: you shouldn't think about performance problems until you have performance problems - there are a lot of more important...

View Article


Answer by FatherStorm for Is parsing JSON faster than parsing XML

since JSON is native in and designed FOR Javascript, it's going to out-perform XML parsing all day long. you didn't mention your server-side language, in PHP there is the json_encode/json_decode...

View Article

Answer by treeface for Is parsing JSON faster than parsing XML

JSON should be faster since it's JS Object Notation, which means it can be recognized natively by JavaScript. In PHP on the GET side of things, I will often do something like this:<script...

View Article

Is parsing JSON faster than parsing XML

I'm creating a sophisticated JavaScript library for working with my company's server side framework.The server side framework encodes its data to a simple XML format. There's no fancy namespacing or...

View Article
Browsing all 12 articles
Browse latest View live




Latest Images