| Catalyst-Plugin-Cache documentation | Contained in the Catalyst-Plugin-Cache distribution. |
Catalyst::Plugin::Cache::Store::Memory - Stupid memory based cache store plugin.
use Catalyst::Plugin::Cache::Store::Memory;
| Catalyst-Plugin-Cache documentation | Contained in the Catalyst-Plugin-Cache distribution. |
#!/usr/bin/perl package Catalyst::Plugin::Cache::Store::Memory; use strict; use warnings; use Catalyst::Plugin::Cache::Backend::Memory; sub setup_memory_cache_backend { my ( $app, $name ) = @_; $app->register_cache_backend( $name => Catalyst::Plugin::Cache::Backend::Memory->new ); } __PACKAGE__; __END__