line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
=head1 NAME |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
OpenFrame::WebApp::Session::MemCache - sessions using Cache::MemoryCache |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=head1 SYNOPSIS |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
use OpenFrame::WebApp::Session::MemCache; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
# see OpenFrame::WebApp::Session |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=cut |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
package OpenFrame::WebApp::Session::MemCache; |
14
|
|
|
|
|
|
|
|
15
|
2
|
|
|
2
|
|
22026
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
70
|
|
16
|
2
|
|
|
2
|
|
12
|
use warnings::register; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
258
|
|
17
|
|
|
|
|
|
|
|
18
|
2
|
|
|
2
|
|
1666
|
use Cache::MemoryCache; |
|
2
|
|
|
|
|
39692
|
|
|
2
|
|
|
|
|
108
|
|
19
|
|
|
|
|
|
|
|
20
|
2
|
|
|
2
|
|
18
|
use base qw( OpenFrame::WebApp::Session::CacheBase ); |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
1408
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
use constant cache_class => "Cache::MemoryCache"; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
our $VERSION = (split(/ /, '$Revision: 1.2 $'))[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 |