File Coverage

blib/lib/OpenFrame/WebApp/Session/FileCache.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             =head1 NAME
2              
3             OpenFrame::WebApp::Session::FileCache - sessions using Cache::FileCache
4              
5             =head1 SYNOPSIS
6              
7             use OpenFrame::WebApp::Session::FileCache;
8              
9             # see OpenFrame::WebApp::Session
10              
11             =cut
12              
13             package OpenFrame::WebApp::Session::FileCache;
14              
15 1     1   25797 use strict;
  1         3  
  1         42  
16 1     1   5 use warnings::register;
  1         3  
  1         195  
17              
18 1     1   1051 use Cache::FileCache;
  1         131329  
  1         125  
19              
20 1     1   10 use base qw( OpenFrame::WebApp::Session::CacheBase );
  1         2  
  1         727  
21              
22             use constant cache_class => "Cache::FileCache";
23              
24             our $VERSION = (split(/ /, '$Revision: 1.4 $'))[1];
25              
26             1;
27              
28             =head1 DESCRIPTION
29              
30             An C using C.
31              
32             Inherits its interface from L.
33              
34             =head1 AUTHOR
35              
36             Steve Purkis
37              
38             =head1 COPYRIGHT
39              
40             Copyright (c) 2003 Steve Purkis. All rights reserved.
41             Released under the same license as Perl itself.
42              
43             =head1 SEE ALSO
44              
45             L,
46             L,
47             L,
48             L
49              
50             =cut