| MooseX-WithCache documentation | view source | Contained in the MooseX-WithCache distribution. |
MooseX::WithCache::KeyGenerator - KeyGenerator Role
package MyKeyGenerator;
use Moose;
with 'MooseX::WithCache::KeyGenerator';
no Moose;
sub generate {
my $key = ...;
return $key;
}
| MooseX-WithCache documentation | view source | Contained in the MooseX-WithCache distribution. |