rename 'delete' to 'remove' so that the interface matches Cache::Cache
[catagits/Catalyst-Plugin-Cache.git] / lib / Catalyst / Plugin / Cache / Backend.pm
CommitLineData
c28ee69c 1#!/usr/bin/perl
2
3package Catalyst::Plugin::Cache::Backend;
4
5use strict;
6use warnings;
7
8sub set {
9 my ( $self, $key, $value ) = @_;
10}
11
12sub get {
13 my ( $self, $key ) = @_;
14}
15
aed484da 16sub remove {
c28ee69c 17 my ( $self, $key ) = @_;
18}
19
20__PACKAGE__;
21
22__END__
23
24=pod
25
26=head1 NAME
27
28Catalyst::Plugin::Cache::Backend - Bare minimum backend interface.
29
30=head1 SYNOPSIS
31
32 use Catalyst::Plugin::Cache::Backend;
33
34=head1 DESCRIPTION
35
aed484da 36This is less than L<Cache::Cache>.
37
c28ee69c 38=cut
39
40