info > Cache

Cache(3pm) User Contributed Perl Documentation Cache(3pm)

📄 NAME

Cache - the Cache interface

🚀 Quick Reference

Use CaseCommandDescription
Create a file cacheCache::File->new( cache_root => '/tmp/cacheroot' )Instantiate a new file-based cache store
Get data with fallback$cache->get($key) // $cache->set($key, $data, '10 minutes')Retrieve entry; if missing, fetch and store
Set data with expiry$cache->set($key, $data, $expiry)Store a value with an optional expiration time
Use tie interfacetie %hash, 'Cache::File', { cache_root => $dir };Access cache as a plain hash
Purge expired entries$cache->purge()Remove all expired data from the cache
Clear all entries$cache->clear()Remove all entries regardless of expiry

📝 DESCRIPTION

The 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).

🔧 USAGE

To 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

âš™ī¸ PROPERTIES

When a cache is constructed these properties can be supplied as options to the new() method.

⚡ SHORTCUT METHODS

These 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 METHODS

These 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 METHODS

These methods are only for use internally (by concrete Cache implementations).

📚 SEE ALSO

Cache::Entry, Cache::File, Cache::RemovalStrategy

🔄 DIFFERENCES FROM CACHE::CACHE

The 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:

👤 AUTHOR

Chris Leishman <chris@leishman.org>
Based on work by DeWitt Clinton <dewitt@unto.net>

ÂŠī¸ COPYRIGHT

Copyright (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 $

Cache
Cache(3pm) User Contributed Perl Documentation Cache(3pm) 📄 NAME 🚀 Quick Reference 📝 DESCRIPTION 🔧 USAGE đŸ› ī¸ METHODS âš™ī¸ PROPERTIES ⚡ SHORTCUT METHODS 🔗 TIE INTERFACE đŸ—‘ī¸ REMOVAL STRATEGY METHODS 🧰 UTILITY METHODS 📚 SEE ALSO 🔄 DIFFERENCES FROM CACHE::CACHE 👤 AUTHOR ÂŠī¸ COPYRIGHT

Generated by phpman v4.9.26-5-g7740029 Author: Che Dong Under GNU General Public License
2026-08-16 09:46 @2600:1f28:365:80b0:7cb9:fb:26c1:e368
CrawledBy CCBot/2.0 (https://commoncrawl.org/faq/)
Valid XHTML 1.0 Transitional!Valid CSS!