Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Data::Rmap is also an alternative (and is faster in this particular case). But they are both rather slow, so I created Data::Clean::JSON and Data::Clean::FromJSON which generate Perl code to do the cleansing and can be several times faster. A benchmark (from slowest to fastest):
% perl -MBench -MStorable=dclone -MData::Dump -MJSON -MData::Visitor:: +Callback -E' $data=JSON->new->decode(q([null, true, false, 1, 2, 3, "a", "b", [], { +}])); dd $data; $v=Data::Visitor::Callback->new("JSON::PP::Boolean"=>sub{$_=$_?1:0}, " +JSON::XS::Boolean"=>sub{$_=$_?1:0}); bench sub { $data2=dclone($data); $v->visit($data2) }, -1; dd $data2' [ undef, bless(do{\(my $o = 1)}, "JSON::XS::Boolean"), bless(do{\(my $o = 0)}, "JSON::XS::Boolean"), 1, 2, 3, "a", "b", [], {}, ] 4846 calls (3328/s), 1.456s (0.301ms/call) [undef, 1, 0 .. 3, "a", "b", [], {}] % perl -MBench -MStorable=dclone -MData::Dump -MJSON -MData::Rmap=rmap +_ref -E' $data=JSON->new->decode(q([null, true, false, 1, 2, 3, "a", "b", [], { +}])); dd $data; bench sub { $data2=clone($data); rmap_ref { $_ = ref($_) eq "JSON::PP: +:Boolean" || ref($_) eq "JSON::XS::Boolean" ? ($_?1:0) : $_ } $data } +, -1; dd $data2' [ undef, bless(do{\(my $o = 1)}, "JSON::XS::Boolean"), bless(do{\(my $o = 0)}, "JSON::XS::Boolean"), 1, 2, 3, "a", "b", [], {}, ] 13573 calls (11735/s), 1.157s (0.0852ms/call) [undef, 1, 0 .. 3, "a", "b", [], {}] % perl -MBench -MStorable=dclone -MData::Dump -MJSON -MData::Clean::Fr +omJSON -E' $data=JSON->new->decode(q([null, true, false, 1, 2, 3, "a", "b", [], { +}])); dd $data; $cleanser=Data::Clean::FromJSON->new; bench sub { $data2=dclone($data); $cleanser->clean_in_place($data2) }, + -1; dd $data2' [ undef, bless(do{\(my $o = 1)}, "JSON::XS::Boolean"), bless(do{\(my $o = 0)}, "JSON::XS::Boolean"), 1, 2, 3, "a", "b", [], {}, ] 33781 calls (32790/s), 1.030s (0.0305ms/call) [undef, 1, 0 .. 3, "a", "b", [], {}]

In reply to Re^3: Making JSON::{PP,XS} not decode true/false to JSON::{PP,XS}::Boolean objects by sedusedan
in thread Making JSON::{PP,XS} not decode true/false to JSON::{PP,XS}::Boolean objects by sedusedan

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-25 23:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found