blob: 097655f51d37a615f061c7f05dfd377226f9647a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
use strict;
use warnings;
use Benchmark qw( cmpthese timethese );
our $VERSION = '1.00';
my $wanttime = $ARGV[1] || 5;
use JSON qw( -support_by_pp -no_export ); # for JSON::PP::Boolean inheritance
use JSON::PP ();
use JSON::XS ();
use utf8;
my $pp = JSON::PP->new->utf8;
my $xs = JSON::XS->new->utf8;
local $/;
my $json = <>;
my $perl = JSON::XS::decode_json $json;
my $result;
printf( "JSON::PP %s\n", JSON::PP->VERSION );
printf( "JSON::XS %s\n", JSON::XS->VERSION );
print "-----------------------------------\n";
print "->decode()\n";
print "-----------------------------------\n";
$result = timethese( -$wanttime,
{
'JSON::PP' => sub { $pp->decode( $json ) },
'JSON::XS' => sub { $xs->decode( $json ) },
},
'none'
);
cmpthese( $result );
print "-----------------------------------\n";
__END__
=pod
=head1 SYNOPSYS
bench_decode.pl json-file
# or
bench_decode.pl json-file minimum-time
=head1 DESCRIPTION
L<JSON::PP> and L<JSON::XS> decoding benchmark.
=head1 AUTHOR
makamaka
=head1 LISENCE
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
|