Download: MooseX-WithCache-0.01002.tar.gz
Dependencies
Annotate this POD
MooseX::WithCache::KeyGenerator - KeyGenerator Role
package MyKeyGenerator; use Moose; with 'MooseX::WithCache::KeyGenerator'; no Moose; sub generate { my $key = ...; return $key; }