vote up 0 vote down star

Hi,

I'm using JSON.parse function to load info about a cellset. I'm testing how much data is possible to fetch in one call.

The eval function starts throwing "out of memory" between 1.3-1.4 million characters (65,000-70,000 cells) in the JSON string. Does anybody know of a workaround for this - perhaps a pure JSON parser, rather than eval?

Thanks, Nathan

flag
1  
I think you're missing the point of the ajax-concept here by fetching 1.4 million chars at once – Natrium Oct 23 at 7:23
Why are you loading such large data? Try to implement paging or lazy loading perhaps. – jerjer Oct 23 at 7:34

2 Answers

vote up 1 vote down

I would recommend this one: http://json.org/js.html it's efficient.

link|flag
vote up 1 vote down

You are definitely pushing way too much information to your client.

Possible workarounds:

  • Page your data and only load what is visible
  • Avoid JSON, use HTML and dump the HTML directly to the page with .innerHTML
  • Maybe use a native JSON parser like in Firefox and IE8 (possibly in other browsers, can't remember)
  • Try JSONP (including a script tag that calls a function with your data as an argument)
link|flag

Your Answer

Get an OpenID
or

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