|
NAMECache - the Cache interface DESCRIPTIONThe Cache modules are designed to assist a developer in persisting data for a specified period of time. Often these modules are used in web applications to store data locally to save repeated and redundant expensive calls to remote machines or databases. The Cache interface is implemented by derived classes that store cached data in different manners (such as files on a filesystem, or in memory). USAGETo use the Cache system, a cache implementation must be chosen to suit your needs. The most common is Cache::File, which is suitable for sharing data between multiple invocations and even between concurrent processes. Using a cache is simple. Here is some very simple sample code for instantiating and using a file system based cache. use Cache::File;
my $cache = Cache::File->new( cache_root => '/tmp/cacheroot' );
my $customer = $cache->get( $name );
unless ($customer) {
$customer = get_customer_from_db( $name );
$cache->set( $name, $customer, '10 minutes' );
}
return $customer;
Of course, far more powerful methods are available for accessing cached data. Also see the TIE INTERFACE below. METHODS
PROPERTIESWhen a cache is constructed these properties can be supplied as options to the new() method.
SHORTCUT METHODSThese methods all have counterparts in the Cache::Entry package, but are provided here as shortcuts. They all default to just wrappers that do '$c->entry($key)->method_name()'. For documentation, please refer to Cache::Entry.
TIE INTERFACE tie %hash, 'Cache::File', { cache_root => $tempdir };
$hash{'key'} = 'some data';
$data = $hash{'key'};
The Cache classes can be used via the tie interface, as shown in the synopsis. This allows the cache to be accessed via a hash. All the standard methods for accessing the hash are supported , with the exception of the 'keys' or 'each' call. The tie interface is especially useful with the load_callback to automatically populate the hash. REMOVAL STRATEGY METHODSThese methods are only for use internally (by concrete Cache implementations). These methods define the interface by which the removal strategy object can manipulate the cache (the Cache is the 'context' of the strategy). By default, methods need to be provided to remove the oldest or stalest objects in the cache - thus allowing support for the default FIFO and LRU removal strategies. All derived Cache implementations should support these methods and may also introduce additional methods (and additional removal strategies to match).
UTILITY METHODSThese methods are only for use internally (by concrete Cache implementations).
SEE ALSOCache::Entry, Cache::File, Cache::RemovalStrategy DIFFERENCES FROM CACHE::CACHEThe Cache modules are a total redesign and reimplementation of Cache::Cache and thus not directly compatible. It would be, however, quite possible to write a wrapper module that provides an identical interface to Cache::Cache. The semantics of use are very similar to Cache::Cache, with the following exceptions:
AUTHORChris Leishman <chris@leishman.org> Based on work by DeWitt Clinton <dewitt@unto.net> COPYRIGHTCopyright (C) 2003-2006 Chris Leishman. All Rights Reserved. This module is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or implied. This program is free software; you can redistribute or modify it under the same terms as Perl itself. $Id: Cache.pm,v 1.7 2006/01/31 15:23:58 caleishm Exp $
|