65c85282f0b3294ced9c160c7188164292f9b715
[catagits/Catalyst-Plugin-Cache.git] / lib / Catalyst / Plugin / Cache / Store.pod
1 =pod
2
3 =head1 NAME
4
5 Catalyst::Plugin::Cache::Store - how to write a Cache store plugin.
6
7 =head1 SYNOPSIS
8
9     package Catalyst::Plugin::Cache::Store::Frobnicator;
10
11     sub setup_frobnicator_cache_backend {
12         my ( $app, $name, $config ) = @_;
13
14         ....
15         
16         $app->register_cache_backend( $name => $cache_object );
17     }
18
19 =head1 DESCRIPTION
20
21 =cut