forked from mherkender/actionjson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
19 lines (14 loc) · 738 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
actionjson includes three projects
decodeJson - A very fast JSON decoder
Around 5-8x faster than as3corelib's JSON decoder
encodeJson - A very fast json encoder
Around 3x faster than as3corelib's JSON encoder
JsonDecoderAsync - An asynchronous JSON parser
Can parse JSON in chunks, making it great for parsing large objects over time
Still around 2x faster than as3corelib's JSON decoder
JsonEncoderAsync - An asynchronous JSON encoder
Encodes JSON in chunks, for large objects that need to be encoded over time
Sadly, about the same speed as as3corelib's JSON encoder
Download the library as a swc here:
http://github.com/mherkender/actionjson/raw/apparatmemory/actionjson.swc
(includes optimizations from the apparatmemory branch)