4
votes
4answers
71 views
Moose: Expiring cached results of calculations when attribute values change?
In our classes we have a pattern where we create an attribute to represent a
calculated value. For obvious reasons we want to cache the calculated value
and then invalidate the ca …
3
votes
3answers
92 views
How do I create a cyclic graph of immutable objects in Perl and Moose?
This could seem like an obviously hopeless case, but is there a trick to create a cyclic graph of immutable objects in Perl? Something like this:
package Node;
use Moose;
has [qw/ …
13
votes
3answers
174 views
Resources for getting started on “modern” Perl
After having heard about new parts of the Perl ecosystem, such as Moose, DeclareX, and Catalyst, I thought that it'd be nice to take a look at Perl. Unfortunately, all of the intr …
2
votes
2answers
56 views
Do MooseX::AttributeHelpers and MooseX::FollowPBP interact correctly?
The following code defines two classes (DeckA and DeckB) that differ only in whether they use the features that come with MooseX::AttributeHelpers. The getters generated by Moose f …
4
votes
1answer
40 views
How can I access the meta class of the module my Moose role is being applied to?
I'm using Moose roles to apply some wrapper behaviour around some accessor methods in a class. I want to apply this role to a number of modules, each of which have a different set …
9
votes
4answers
88 views
How can I extend Moose’s automatic pragma exports?
You know how Moose automatically turns on strict and warnings during import? I want to extend that behavior by turning on autodie and use feature ':5.10' in my Moose classes.
I've …
5
votes
2answers
64 views
Perl Moose Method Modifiers: Call ‘around’ before ‘before’ and ‘after’
I'm using Moose and I need to wrap method calls in my project. It's important that my wrapping code be the most outer modifier. What I've done so far is put my method modifiers in …
4
votes
3answers
107 views
What’s the proper way to create a BUILDARGS method using MooseX::Declare?
I'm having difficulty using MooseX::Declare properly when calling BUILDARGS.
I'm trying to create an object as an interface for a file. (Specifically, I want an interface to a bi …
2
votes
1answer
45 views
Problem with mixins in a MooseX::NonMoose class
Consider the following:
package MyApp::CGI;
use Moose;
use MooseX::NonMoose;
use Data::Dumper;
extends 'CGI::Application';
BEGIN {
print "begin isa = " . Dumper \@MyApp::C …
7
votes
5answers
384 views
Is there a really good web resource on moving to Moose?
The documentation with the module itself is pretty thin, and just tends to point to MOP.
7
votes
2answers
105 views
How do I best make triggered accessors with defaults in Moose?
I have a situation where I'd like to cache some calculations for use
later. Let's say I have a list of allowed values. Since I'm going to
be checking to see if anything is in tha …
0
votes
2answers
49 views
How do I install the dependencies I need for MySQL::Slurp?
I am trying to install the mysqlslurp utility found in MySQL::Slurp.
I found that it requires Moose and therefore I installed that package too.
But I am still not able to use the …
5
votes
3answers
248 views
What do you think of MooseX::Declare?
I've stumbled upon the MooseX::Declare documentation, and I have to say "WOW!". That looks really nice! I think it's the cleanest OOP syntax Perl has.
use MooseX::Declare;
class …
4
votes
2answers
77 views
How can I declare a class variable as floating point in Moose?
How can I declare a class variable as floating point in Moose?
My (fictional) sample below produces errors for "Real", "Number" etc ... "Str" works but defeats the purpose .. sear …
4
votes
2answers
118 views
How come MooseX::Storage doesn’t seem to follow attribute traits for some objects?
Hi,
I have put together a little test case to demonstrate my problem:
package P1;
use Moose;
use MooseX::Storage;
with Storage;
has 'blah' => (
is => 'rw',
);
package …
