pankaj
pankaj

Reputation: 8348

slow xml parsing

I am parsing my data from a xml which is generated with php code from a mysql database. I then parse it using NSXMLParser. But the parsing is slow. can some one please help me in finding a faster solution?

Thanks Pankaj

Upvotes: 1

Views: 253

Answers (1)

Nava Carmon
Nava Carmon

Reputation: 4533

TBXML parser or libxml2 SAX are much more faster and less memory consuming parsers. The difference is that TBXML cannot parse during download and libxml2 SAX can

Here's the link to compare :How to choose fastest xml parser for iphone

Upvotes: 1

Related Questions