Apache-Cache
view release on metacpan or search on metacpan
lib/Apache/Cache.pm view on Meta::CPAN
=cut
sub new
{
my $pkg = shift;
my $class = ref($pkg) || $pkg;
my $options =
{
namespace => (caller())[0],
cachename => 'Default',
default_expires_in => EXPIRES_NEVER,
max_keys => undef(),
max_size => undef(),
default_lock_timeout=> undef(),
};
croak("odd number of arguments for object construction")
if(@_ % 2);
my @del;
( run in 0.312 second using v1.01-cache-2.11-cpan-b61123c0432 )