--- JSON-XS/XS.pm 2007/03/29 01:27:36 1.24 +++ JSON-XS/XS.pm 2007/03/29 02:45:49 1.25 @@ -88,7 +88,7 @@ use strict; BEGIN { - our $VERSION = '0.8'; + our $VERSION = '1.0'; our @ISA = qw(Exporter); our @EXPORT = qw(to_json from_json objToJson jsonToObj); @@ -311,7 +311,7 @@ =item $json = $json->max_depth ([$maximum_nesting_depth]) -Sets the maximum nesting level (default C<8192>) accepted while encoding +Sets the maximum nesting level (default C<4096>) accepted while encoding or decoding. If the JSON text or Perl data structure has an equal or higher nesting level then this limit, then the encoder and decoder will stop and croak at that point. @@ -412,17 +412,28 @@ =item hash references Perl hash references become JSON objects. As there is no inherent ordering -in hash keys, they will usually be encoded in a pseudo-random order that -can change between runs of the same program but stays generally the same -within a single run of a program. JSON::XS can optionally sort the hash -keys (determined by the I flag), so the same datastructure -will serialise to the same JSON text (given same settings and version of -JSON::XS), but this incurs a runtime overhead. +in hash keys (or JSON objects), they will usually be encoded in a +pseudo-random order that can change between runs of the same program but +stays generally the same within a single run of a program. JSON::XS can +optionally sort the hash keys (determined by the I flag), so +the same datastructure will serialise to the same JSON text (given same +settings and version of JSON::XS), but this incurs a runtime overhead +and is only rarely useful, e.g. when you want to compare some JSON text +against another for equality. =item array references Perl array references become JSON arrays. +=item other references + +Other unblessed references are generally not allowed and will cause an +exception to be thrown, except for references to the integers C<0> and +C<1>, which get turned into C and C atoms in JSON. You can +also use C and C to improve readability. + + to_json [\0,JSON::XS::true] # yields [false,true] + =item blessed objects Blessed objects are not allowed. JSON::XS currently tries to encode their @@ -629,7 +640,7 @@ arrays. The C stack is a limited resource: for instance, on my amd64 machine with 8MB of stack size I can decode around 180k nested arrays but only 14k nested JSON objects. If that is exceeded, the program -crashes. Thats why the default nesting limit is set to 8192. If your +crashes. Thats why the default nesting limit is set to 4096. If your process has a smaller stack, you should adjust this setting accordingly with the C method. @@ -647,6 +658,9 @@ =cut +sub true() { \1 } +sub false() { \0 } + 1; =head1 AUTHOR