Subject: | Issue with Memoize::Expire and DB_File |
There is a bug in 1.00 and 1.01 that appears to cause the HASH value
that is passed to the tie to be ignored. The code below appears to fix
the issue (near the end of Memoize::Expire::TIEHASH)
if(exists($args{HASH}))
{
$args{C} = $args{HASH};
}
else
{
$args{C} = \%cache;
}