File: Backend.pm

package info (click to toggle)
libcatalyst-plugin-cache-perl 0.12-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 264 kB
  • sloc: perl: 1,855; makefile: 2
file content (40 lines) | stat: -rw-r--r-- 454 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/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__

=pod

=head1 NAME

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

=head1 SYNOPSIS

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

=head1 DESCRIPTION

This is less than L<Cache::Cache>.

=cut