moose::cookbook::basics::recipe7(3) [osx man page]
Moose::Cookbook::Basics::Recipe7(3) User Contributed Perl Documentation Moose::Cookbook::Basics::Recipe7(3)NAME
Moose::Cookbook::Basics::Recipe7 - Making Moose fast with immutable
VERSION
version 2.0205
SYNOPSIS
package Point;
use Moose;
has 'x' => ( isa => 'Int', is => 'ro' );
has 'y' => ( isa => 'Int', is => 'rw' );
__PACKAGE__->meta->make_immutable;
DESCRIPTION
The Moose metaclass API provides a "make_immutable()" method. Calling this method does two things to your class. First, it makes it faster.
In particular, object construction and destruction are effectively "inlined" in your class, and no longer invoke the meta API.
Second, you can no longer make changes via the metaclass API, such as adding attributes. In practice, this won't be a problem, as you
rarely need to do this after first loading the class.
CONCLUSION
We strongly recommend you make your classes immutable. It makes your code much faster, with a small compile-time cost. This will be
especially noticeable when creating many objects.
AUTHOR
Stevan Little <stevan@iinteractive.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Infinity Interactive, Inc..
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
perl v5.12.5 2011-09-06 Moose::Cookbook::Basics::Recipe7(3)
Check Out this Related Man Page
Moose::Cookbook::Basics::Immutable(3) User Contributed Perl Documentation Moose::Cookbook::Basics::Immutable(3)NAME
Moose::Cookbook::Basics::Immutable - Making Moose fast by making your class immutable
VERSION
version 2.0604
SYNOPSIS
package Point;
use Moose;
has 'x' => ( isa => 'Int', is => 'ro' );
has 'y' => ( isa => 'Int', is => 'rw' );
__PACKAGE__->meta->make_immutable;
DESCRIPTION
The Moose metaclass API provides a "make_immutable()" method. Calling this method does two things to your class. First, it makes it faster.
In particular, object construction and destruction are effectively "inlined" in your class, and no longer invoke the meta API.
Second, you can no longer make changes via the metaclass API, such as adding attributes. In practice, this won't be a problem, as you
rarely need to do this after first loading the class.
CONCLUSION
We strongly recommend you make your classes immutable. It makes your code much faster, with a small compile-time cost. This will be
especially noticeable when creating many objects.
AUTHOR
Moose is maintained by the Moose Cabal, along with the help of many contributors. See "CABAL" in Moose and "CONTRIBUTORS" in Moose for
details.
COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Infinity Interactive, Inc..
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
perl v5.16.2 2012-09-19 Moose::Cookbook::Basics::Immutable(3)
I have a lot of processes all of which need to write quite
a lot of data to the filesystem ( to a single file).
This is managed today in the following way : all the processes
write the data to a shared memory block, which is manged by a process that empties it to a file, thus allowing more... (7 Replies)
I am processing some terabytes of information on a computer having 8 processors (each with 4 cores) with a 16GB RAM and 5TB hard drive implemented as a RAID. The processing doesn't seem to be blazingly fast perhaps because of the IO limitation.
I am basically running a perl script to read some... (13 Replies)
Hi friends,
I hope u people are ok and doing fine.
I have this small problem with the derived class. I have created te base class and there is a small problem with the definition of the derived class which the compiler is pointing out, could you please help me. Here is my code
#ifndef... (2 Replies)