logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Cache::MemoryCache -- implements the Cache interface.

Author

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

       Last author:     $Author: dclinton $

       Copyright (C) 2001-2003 DeWitt Clinton

perl v5.34.0                                       2022-06-30                            Cache::MemoryCache(3pm)

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.

Methods

       See Cache::Cache for the API documentation.

Name

       Cache::MemoryCache -- implements the Cache interface.

Options

       See Cache::Cache for standard options.

Properties

       See Cache::Cache for default properties.

See Also

       Cache::Cache

Synopsis

         use Cache::MemoryCache;

         my $cache = new Cache::MemoryCache( { 'namespace' => 'MyNamespace',
                                               'default_expires_in' => 600 } );

         See Cache::Cache for the usage synopsis.

See Also