DOKK / manpages / debian 11 / libtext-micromason-perl / Text::MicroMason::Cache::Null.3pm.en
Text::MicroMason::Cache::Null(3pm) User Contributed Perl Documentation Text::MicroMason::Cache::Null(3pm)

Text::MicroMason::Cache::Null - Trivial Cache with No Data Storage

This trivial cache class supports the cache interface but doesn't store or retrieve any values.

  $cache = Text::MicroMason::Cache::Null->new();
    
  undef = $cache->get( $key );
    

Does nothing.

  $cache->set( $key, $value );
    

Returns the provided value.

  $cache->clear();
    

Does nothing.

For uses of this cache class, see Text::MicroMason::ExecuteCache.

Additional cache classes are available in the Text::MicroMason::Cache:: namespace, or select other caching modules on CPAN that support the interface described in Cache::Cache.

For distribution, installation, support, copyright and license information, see Text::MicroMason::Docs::ReadMe.

2019-11-10 perl v5.30.0