Cache::Object -- the data stored in a Cache. |
Cache::Object -- the data stored in a Cache.
Object is used by classes implementing the Cache interface as an object oriented wrapper around the data. End users will not normally use Object directly, but it can be retrieved via the get_object method on the Cache::Cache interface.
use Cache::Object;
my $object = new Cache::Object( );
$object->set_key( $key ); $object->set_data( $data ); $object->set_expires_at( $expires_at ); $object->set_created_at( $created_at );
Cache::Cache
Original author: DeWitt Clinton <dewitt@unto.net>
Last author: $Author: dclinton $
Copyright (C) 2001-2003 DeWitt Clinton
Cache::Object -- the data stored in a Cache. |