Catalyst::Plugin::Cache::Store::Memory - Stupid memory based cache store plugin.


Catalyst-Plugin-Cache documentation Contained in the Catalyst-Plugin-Cache distribution.

Index


Code Index:

NAME

Top

Catalyst::Plugin::Cache::Store::Memory - Stupid memory based cache store plugin.

SYNOPSIS

Top

	use Catalyst::Plugin::Cache::Store::Memory;

DESCRIPTION

Top


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__