vote up 1 vote down star

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.

flag

61% accept rate

1 Answer

vote up 1 vote down

giving your user a half a million nodes XML is not such a good ideea either. why don't you just make up a data type of your own and write it in binary files. no need for xml for such huge number of records.

if you have this data in a array or object or whatever you can simply do

var file:File = File.applicationStorageDirectory.resolvePath( 'file.lib' );
var fs:FileStream = new FileStream();
fs.open(file, FileMode.WRITE);
fs.writeObject(someObjectOfYours);
fs.close();

and do the same for reading but use FileMode.READ and readObject method or just write and read byte by byte

link|flag
why is it not a good idea? XML tools can handle it, and other languages can parse it. If I wanted to use my own homegrown binary format, I would use an object DB... by the way, which ones work for AIR? – yar Jul 21 at 13:34
yeah, XML tools maybe. but this is flash - running in a virtual machine. not the same thing. – TheBrain Jul 21 at 13:35
Yeah yeah, object serialization. So basically you use my product and you're stuck forever. Anyway, +1 for understanding the question, though an answer would've helped... AIR is beginning to scare me. And I thought it's was perfect.... – yar Jul 21 at 13:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.