So basically you measured startup time. The same without startup time:

#!/usr/bin/perl use strict; use warnings; package NumberHolder; use Moose; has 'x' => (is => 'rw', isa => 'Int'); has 'y' => (is => 'rw', isa => 'Int'); __PACKAGE__->meta->make_immutable; package NumberRun; sub new { my $class = shift; my %args = @_; my %h = ( "x" => 0, "y" => 0); @h{ keys %args} = values %args; return bless \%h; } sub x { my $self = shift; $self->{x} = shift if @_; $self->{x}; } sub y { my $self = shift; $self->{y} = shift if @_; $self->{y}; } package Main; use Benchmark qw( cmpthese ); sub withMoose { my $z = NumberHolder->new("x" => 1, "y" => 2); my $f= $z->x()+ $z->y(); if ($z->x()>0) { $z->y(5); } } sub traditional { my $z = NumberRun->new("x" => 1, "y" => 2); my $f= $z->x()+ $z->y(); if ($z->x()>0) { $z->y(5); } } my %tests = ( "with Moose" => sub { withMoose }, "traditional" => sub { traditional }, ); cmpthese(-5, \%tests); # prints: Rate with Moose traditional with Moose 49776/s -- -55% traditional 111550/s 124% --

I eliminated the prints as these take a lot of time themselves. Put them in again and the difference will be 80% instead of 124%.

Now this represents worst case. The methods are minimalist and the test subs just call the methods a few times. Print, read or write to files or use a database and the difference gets smaller and smaller


In reply to Re^3: Moose performance by jethro
in thread Moose performance by Anonymous Monk

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.