added benchmark script
Tokuhiro Matsuno [Sat, 6 Dec 2008 05:40:43 +0000 (05:40 +0000)]
author/benchmark.pl [new file with mode: 0644]

diff --git a/author/benchmark.pl b/author/benchmark.pl
new file mode 100644 (file)
index 0000000..a7832e2
--- /dev/null
@@ -0,0 +1,36 @@
+use strict;
+use warnings;
+use Benchmark qw/cmpthese/;
+use String::TT qw/tt/;
+
+for my $klass (qw/Moose Mouse/) {
+    eval tt(q{
+        package [% klass %]One;
+        use [% klass %];
+        has n => (
+            is => 'rw',
+            isa => 'Int',
+        );
+        no [% klass %];
+        __PACKAGE__->meta->make_immutable;
+    });
+    die $@ if $@;
+}
+
+print "---- new\n";
+cmpthese(
+    100000 => {
+        map { my $x = $_; $_ => sub { $x->new(n => 3) } }
+        map { "${_}One" }
+        qw/Moose Mouse/
+    }
+);
+
+print "---- new,set\n";
+cmpthese(
+    100000 => {
+        map { my $y = $_; $_ => sub { $y->new(n => 3)->n(5) } }
+        map { "${_}One" }
+        qw/Moose Mouse/
+    }
+);