in reply to Re: JSON::XS Bool issue in mod_perl (XS--)
in thread JSON::XS Bool issue in mod_perl
But I recall looking at the code and thinking that the creation of the 'true' and 'false' values should've been done in Perl.
JSON::XS does create true and false in Perl.
our $true = do { bless \(my $dummy = 1), "JSON::XS::Boolean" }; our $false = do { bless \(my $dummy = 0), "JSON::XS::Boolean" }; sub true() { $true } sub false() { $false }
So many the problem can be solved by upgrading the module the OP has installed? In any case, the docs say "This module is not guaranteed to be thread safe".
|
|---|