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

Catalyst::Plugin::Cache::Backend::Memory - Stupid memory based caching backend.

Description

       This backend uses Storable to cache data in memory.

       In combination with an engine like FastCGI/mod_perl/prefork which calls fork() your cache will get async
       because child processes don't share cache in memory.

perl v5.34.0                                       2022-06-09             Catalyst::Plugi...Backend::Memory(3pm)

Name

       Catalyst::Plugin::Cache::Backend::Memory - Stupid memory based caching backend.

Synopsis

           use Catalyst::Plugin::Cache::Backend::Memory;

           my $m = Catalyst::Plugin::Cache::Backend::Memory->new;

           $m->set( foo => "thing" );

See Also