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

Method::Cached::KeyRule::Base - Base class to make key generation rule

SYNOPSIS

package Foo::SomeRule;

use base qw/Method::Cached::KeyRule::Base/;

__PACKAGE__->export_rule(qw/SOME_RULE/);

sub SOME_RULE {
    my ($method_name, $args) = @_;
    ...
}

AUTHOR

Satoshi Ohkubo <s.ohkubo@gmail.com>

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.