MooseX::WithCache::KeyGenerator - KeyGenerator Role


MooseX-WithCache documentation  | view source Contained in the MooseX-WithCache distribution.

Index


NAME

Top

MooseX::WithCache::KeyGenerator - KeyGenerator Role

SYNOPSIS

Top

    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.