Anyone notice JSON is really slow?

Post here your questions about Actionscript and Java server side extensions development.

Moderators: Lapo, Bax

Post Reply
tommy408
Posts: 16
Joined: 26 Sep 2010, 05:13

Anyone notice JSON is really slow?

Post by tommy408 »

The following test took 62ms in Java. In a game with a lot of concurrent users requesting small piece of data, this is really bad. I don't know any data structure that is has even 1ms for these operations.

net.sf.json.JSONArray array = new net.sf.json.JSONArray();

Util.timeStart();
array.add(name);
array.add(userID);
array.add(status);
Util.timeStop();


EDIT:

Use org.json.JSONArray instead.
Post Reply