info > Cache::Memory

πŸ“› NAME

Cache::Memory - Memory based implementation of the Cache interface

πŸš€ Quick Reference

Use Case Command Description
Create a memory cache Cache::Memory->new( namespace => 'MyNamespace', default_expires => '600 sec' ) Instantiate a new in-memory cache with a namespace and default expiration
Set and retrieve cache values my $cache = Cache::Memory->new(...); $cache->set( key => $value ); my $v = $cache->get( key ); Use the standard Cache interface to store and fetch data
Clear cache $cache->clear(); Remove all entries from the cache’s namespace

πŸ“‹ SYNOPSIS

use Cache::Memory;

my $cache = Cache::Memory->new( namespace => 'MyNamespace',
                                default_expires => '600 sec' );

See Cache for the usage synopsis.

πŸ“– DESCRIPTION

The Cache::Memory class implements the Cache interface. This cache stores data on a per-process basis. This is the fastest of the cache implementations, but is memory intensive and data can not be shared between processes. It also does not persist after the process dies. However data will remain in the cache until cleared or it expires. The data will be shared between instances of the cache object, a cache object going out of scope will not destroy the data.

πŸ—οΈ CONSTRUCTOR

my $cache = Cache::Memory->new( %options )

The constructor takes cache properties as named arguments, for example:

my $cache = Cache::Memory->new( namespace => 'MyNamespace',
                                default_expires => '600 sec' );

See 'PROPERTIES' below and in the Cache documentation for a list of all available properties that can be set.

πŸ”§ METHODS

See 'Cache' for the API documentation.

βš™οΈ PROPERTIES

Cache::Memory adds the property 'namespace', which allows you to specify a different caching store area to use from the default. All methods will work ONLY on the namespace specified.

my $ns = $c->namespace();
$c->set_namespace( $namespace );

For additional properties, see the 'Cache' documentation.

πŸ”— SEE ALSO

Cache

πŸ‘€ AUTHOR

Chris Leishman <chris AT leishman.org>
Based on work by DeWitt Clinton <dewitt AT 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: Memory.pm,v 1.9 2006/01/31 15:23:58 caleishm Exp $

Cache::Memory
πŸ“› NAME πŸš€ Quick Reference πŸ“‹ SYNOPSIS πŸ“– DESCRIPTION πŸ—οΈ CONSTRUCTOR πŸ”§ METHODS βš™οΈ PROPERTIES πŸ”— SEE ALSO πŸ‘€ AUTHOR ©️ COPYRIGHT

Generated by phpman v4.9.26-5-g7740029 Author: Che Dong Under GNU General Public License
2026-08-14 20:50 @2600:1f28:365:80b0:4d23:66fa:c2bb:7bae
CrawledBy CCBot/2.0 (https://commoncrawl.org/faq/)
Valid XHTML 1.0 Transitional!Valid CSS!