This file is indexed.

/usr/share/perl5/Catalyst/Plugin/Cache/Backend.pm is in libcatalyst-plugin-cache-perl 0.12-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
#!/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