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

CHI::Driver::Null - Nothing is cached

Author

       Jonathan Swartz <swartz@pobox.com>

Description

       This cache driver implements the full CHI interface without ever actually storing items. Useful for
       disabling caching in an application, for example.

Name

       CHI::Driver::Null - Nothing is cached

See Also

       CHI

Synopsis

           use CHI;

           my $cache = CHI->new(driver => 'Null');
           $cache->set('key', 5);
           my $value = $cache->get('key');   # returns undef

Version

       version 0.61

See Also