I'm doing some initial investigation with Adobe AIR to see how it handles big XML docs, and I'm getting very surprising results. Here's my code
var xml:XML = <what></what>;
for (var i:Number=0;i<5000; i++) {
var child:XML = new XML("<child id='" + i + "'/>");
xml.appendChild(child);
}
for 5000 nodes it takes 13 seconds (what?) and for 10K nodes it doesn't even survive. Is there no way to handle big XML docs (and much less, write them to disk) in Adobe AIR? This would kill all of my big XML hopes and dreams.
Note 1: Please do not say "use SQLite" unless you can also suggest a way to give your users an export strategy for half a million nodes.
Note 2: I do this in Winforms on .Net for a million nodes routinely, which is irrelevant but I'd be surprised if there's no way to do this in AIR.
Note 3: See also http://stackoverflow.com/questions/348627/parsing-large-xml-files-in-adobe-flex which seems to talk about the same thing.
