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::NullCache -- implements the Cache interface.

Author

       Original author: Jay Sachs

       Last author:     $Author: dclinton $

       Copyright (C) 2001 Jay Sachs, 2002 DeWitt Clinton

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

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.

See Also