Cache::SizeAwareMemoryCache -- extends Cache::MemoryCache
Contents
Description
The SizeAwareMemoryCache class adds the ability to dynamically limit the size (in bytes) of a memory
based cache. This class also implements the SizeAwareCache interface, providing the 'max_size' option
and the 'limit_size( $size )' method.
Methods
See Cache::Cache and Cache::SizeAwareCache for the API documentation.
Name
Cache::SizeAwareMemoryCache -- extends Cache::MemoryCache
Options
See Cache::Cache and Cache::SizeAwareCache for the standard options.
Properties
See Cache::Cache and Cache::SizeAwareCache for the default properties.
See Also
Cache::Cache, Cache::SizeAwareCache, Cache::MemoryCache
Synopsis
use Cache::SizeAwareMemoryCache;
my $cache =
new Cache::SizeAwareMemoryCache( { 'namespace' => 'MyNamespace',
'default_expires_in' => 600,
'max_size' => 10000 } );
