Catalyst::Plugin::Cache::Backend - Bare minimum backend interface.


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

Index


Code Index:

NAME

Top

Catalyst::Plugin::Cache::Backend - Bare minimum backend interface.

SYNOPSIS

Top

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

DESCRIPTION

Top

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__