summaryrefslogtreecommitdiff
path: root/perl/benchmark
diff options
context:
space:
mode:
authorTokuhiro Matsuno <tokuhirom@users.sourceforge.jp>2009-04-15 23:02:27 +0900
committerTokuhiro Matsuno <tokuhirom@users.sourceforge.jp>2009-04-15 23:02:27 +0900
commit0b083030b106113c4cc92d7b1d0cae4db1b8c00a (patch)
treeead3e42c66034f9a20499732b7a52d1ade60b41a /perl/benchmark
parente53799d779b83cbcbf9f068011178ce281ecfb21 (diff)
downloadmsgpack-python-0b083030b106113c4cc92d7b1d0cae4db1b8c00a.tar.gz
perl: renamed benchmark script
Diffstat (limited to 'perl/benchmark')
-rw-r--r--perl/benchmark/serialize.pl (renamed from perl/benchmark/p1.pl)2
1 files changed, 2 insertions, 0 deletions
diff --git a/perl/benchmark/p1.pl b/perl/benchmark/serialize.pl
index 257932e..626ae03 100644
--- a/perl/benchmark/p1.pl
+++ b/perl/benchmark/serialize.pl
@@ -7,6 +7,8 @@ use Benchmark ':all';
my $a = [0..2**24];
print "-- serialize\n";
+print "JSON::XS: $JSON::XS::VERSION\n";
+print "Data::MessagePack: $Data::MessagePack::VERSION\n";
cmpthese(
-1 => {
json => sub { JSON::XS::encode_json($a) },