There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

NAME

MooseX::WithCache::KeyGenerator - KeyGenerator Role

SYNOPSIS

package MyKeyGenerator;
use Moose;

with 'MooseX::WithCache::KeyGenerator';

no Moose;

sub generate {
    my $key = ...;
    return $key;
}