Perl Diver 2.33
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Cache::MemoryCache

Name Cache::MemoryCache
Version
Located at /usr/share/perl5
File /usr/share/perl5/Cache/MemoryCache.pm
Is Core No
Search CPAN for this module Cache::MemoryCache
Documentation Cache::MemoryCache
Module Details Cache::MemoryCache


NAME

Cache::MemoryCache -- implements the Cache interface.


DESCRIPTION

The MemoryCache class implements the Cache interface. This cache stores data on a per-process basis. This is the fastest of the cache implementations, but data can not be shared between processes with the MemoryCache. However, the data will remain in the cache until cleared, it expires, or the process dies. The cache object simply going out of scope will not destroy the data.


SYNOPSIS

  use Cache::MemoryCache;
  my $cache = new Cache::MemoryCache( { 'namespace' => 'MyNamespace',
                                        'default_expires_in' => 600 } );
  See Cache::Cache for the usage synopsis.


METHODS

See Cache::Cache for the API documentation.


OPTIONS

See Cache::Cache for standard options.


PROPERTIES

See Cache::Cache for default properties.


SEE ALSO

Cache::Cache


AUTHOR

Original author: DeWitt Clinton <dewitt@unto.net>

Last author: $Author: dclinton $

Copyright (C) 2001-2003 DeWitt Clinton

Perl Diver brought to you by ScriptSolutions.com © 1997- 2026