Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Flex application,I am loading a JSON file with more than 40,000 items. Does Flex provide a way to load this file faster?

share|improve this question

1 Answer

Target Flash Player 11 and use the new native JSON parse:

var obj:Object = JSON.parse( value );

http://www.skyript.com/2011/07/json-parsingencoding-with-native-parser.html

JSON performance test

share|improve this answer
1  
Very interesting! – tousdan Oct 20 '11 at 20:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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