Cache::NullCache -- implements the Cache interface.
Contents
Description
The NullCache class implements the Cache::Cache interface, but does not actually persist data. This is
useful when developing and debugging a system and you wish to easily turn off caching. As a result, all
calls to get and get_object will return undef.
Methods
See Cache::Cache for the API documentation.
Name
Cache::NullCache -- 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::NullCache;
my $cache = new Cache::NullCache( );
See Cache::Cache for the usage synopsis.
