| Catalyst-Plugin-Cache documentation | Contained in the Catalyst-Plugin-Cache distribution. |
Catalyst::Plugin::Cache::Backend - Bare minimum backend interface.
use Catalyst::Plugin::Cache::Backend;
This is less than Cache::Cache.
| Catalyst-Plugin-Cache documentation | Contained in the Catalyst-Plugin-Cache distribution. |
#!/usr/bin/perl package Catalyst::Plugin::Cache::Backend; use strict; use warnings; sub set { my ( $self, $key, $value ) = @_; } sub get { my ( $self, $key ) = @_; } sub remove { my ( $self, $key ) = @_; } __PACKAGE__; __END__