> On Tue, 20 Aug 2002, Chris wrote:
>
>> my $timeout1 = $Cache->get_object('1')->get_expires_at();
>> my $timeout2 = $Cache->get_object('1')->get_expires_at();
>
> ... ETOOMUCHCUTNPASTE.
>
Ick... My bad there. That explains one problem. Thanks.
Still I get the same values for $timeout before for:
$Cache->set('1', 'Yes', "5 m");
print $Cache->get_object('1')->get_expires_at(), "\n";
$Cache->get_object('1')->set_expires_at("10 m");
print $Cache->get_object('1')->get_expires_at();
Is this supposed to happen?
-Chris