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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id: Session.pm 2505 2008-06-04 07:54:01Z fumiakiy $
package MT::Cache::Session;
use strict;
use MT::Session;
sub new {
my $class = shift;
my (%param) = @_;
$param{'ttl'} ||= 0;
$param{'kind'} ||= 'CO';
my $self = bless \%param, $class;
return $self;
}
sub get {
my MT::Cache::Session $self = shift;
my ($key) = @_;
my $record;
if ( $self->{ttl} ) {
$record = MT::Session::get_unexpired_value(
$self->{ttl}, { id => $key, kind => $self->{kind} } );
}
else {
$record = MT::Session->load( { id => $key, kind => $self->{kind} } );
}
return unless $record;
return $record->data;
}
sub get_multi {
my MT::Cache::Session $self = shift;
my @keys = @_;
my @tmp = MT::Session->load( { id => \@keys, kind => $self->{kind} } )
or return;
my @records;
if ( $self->{ttl} ) {
foreach my $record (@tmp) {
if ( $record->start() < time - $self->{ttl} ) {
$record->remove;
next;
}
push @records, $record;
}
}
else {
@records = @tmp;
}
my %values = map { $_->id => $_->data } @records;
return \%values;
}
sub delete {
my MT::Cache::Session $self = shift;
my ($key, $time) = @_;
MT::Session->remove( { id => $key, kind => $self->{kind} } )
or return 0;
1;
}
*remove = \&delete;
sub add {
_set("add", @_);
}
sub replace {
_set("replace", @_);
}
sub set {
_set("set", @_);
}
sub _set {
my $cmdname = shift;
my MT::Cache::Session $self = shift;
my ($key, $val, $exptime) = @_;
my $cache = MT::Session->load({
id => $key,
kind => $self->{kind},
});
$cache->remove() if $cache;
$cache = MT::Session->new;
$cache->set_values({
id => $key,
kind => $self->{kind},
start => time,
data => $val,
});
$cache->save();
}
sub flush_all {
my MT::Cache::Session $self = shift;
MT::Session->remove({ kind => $self->{kind} });
}
sub purge_stale {
my MT::Cache::Session $self = shift;
my ( $ttl ) = @_;
MT::Session->remove(
{ kind => $self->{kind}, start => [ undef, time - $ttl ] },
{ range => { start => 1 } }
);
1;
}
sub DESTROY {}
1;
__END__
=head1 NAME
MT::Cache::Session - Utility package caching data in MT::Session record.
=head1 SYNOPSIS
my $cache = MT::Cache::Session->new({ttl => 10});
my $data = $cache->get($key);
$cache->set($key => $value);
my $hash = $cache->get_multi($key1, $key2);
=head1 DESCRIPTION
I<MT::Cache::Session> provides a wrapper interface around I<MT::Session>,
with the interface similar to Cache::Memcached.
=head1 USAGE
=head2 $cache->get
Retrieves a key from the cache. Returns the value or undef.
=head2 $cache->get_multi
Retrieves multiple keys from the cache doing just one query.
Returns a hashref of key/value pairs that were available.
=head2 $cache->set
Unconditionally sets a key to a given value in the memcache. Returns true
if it was stored successfully.
=head2 $cache->delete
Deletes a key. You may also use the alternate method name B<remove>,
so MT::Cache::Session looks like the L<Cache::Cache> API.
=head2 $cache->flush_all
Empty all the caches.
=head2 $cache->purge_stale
Deletes all the cached objects that are already too old.
Takes one argument: $ttl specifies the duration that is considered stale.
=head1 AUTHOR & COPYRIGHT
Please see L<MT/AUTHOR & COPYRIGHT>.
=cut
|