3 # Copyright 2009 Chris Cormack and The Koha Dev Team
4 # Parts copyright 2012-2013 C & P Bibliography Services
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 Koha::Cache - Handling caching of html and Objects for Koha
28 my $cache = Koha::Cache->new({cache_type => $cache_type, %params});
30 # see also Koha::Caches->get_instance;
34 Koha caching routines. This class provides two interfaces for cache access.
35 The first, traditional OO interface provides the following functions:
44 use Module
::Load
::Conditional
qw(can_load);
48 use Koha
::Cache
::Object
;
51 use base
qw(Class::Accessor);
53 __PACKAGE__
->mk_ro_accessors(
54 qw( cache memcached_cache fastmmap_cache memory_cache ));
57 our $L1_encoder = Sereal
::Encoder
->new;
58 our $L1_decoder = Sereal
::Decoder
->new;
62 Create a new Koha::Cache object. This is required for all cache-related functionality.
67 my ( $class, $self, $params ) = @_;
68 $self->{'default_type'} =
70 || $ENV{CACHING_SYSTEM
} # DELME What about this?
73 my $subnamespace = $params->{subnamespace
} // '';
75 $ENV{DEBUG
} && carp
"Default caching system: $self->{'default_type'}";
77 $self->{'timeout'} ||= 0;
78 # Should we continue to support MEMCACHED ENV vars?
79 $self->{'namespace'} ||= $ENV{MEMCACHED_NAMESPACE
};
80 my @servers = split /,/, $ENV{MEMCACHED_SERVERS
} || '';
81 unless ( $self->{namespace
} and @servers ) {
82 my $koha_config = Koha
::Config
->read_from_file( Koha
::Config
->guess_koha_conf() );
83 $self->{namespace
} ||= $koha_config->{config
}{memcached_namespace
} || 'koha';
84 @servers = split /,/, $koha_config->{config
}{memcached_servers
} // ''
87 $self->{namespace
} .= ":$subnamespace:";
89 if ( $self->{'default_type'} eq 'memcached'
90 && can_load
( modules
=> { 'Cache::Memcached::Fast' => undef } )
91 && _initialize_memcached
($self, @servers)
92 && defined( $self->{'memcached_cache'} ) )
94 $self->{'cache'} = $self->{'memcached_cache'};
97 if ( $self->{'default_type'} eq 'fastmmap'
98 && defined( $ENV{GATEWAY_INTERFACE
} )
99 && can_load
( modules
=> { 'Cache::FastMmap' => undef } )
100 && _initialize_fastmmap
($self)
101 && defined( $self->{'fastmmap_cache'} ) )
103 $self->{'cache'} = $self->{'fastmmap_cache'};
106 # Unless memcache or fastmmap has already been picked, use memory_cache
107 unless ( defined( $self->{'cache'} ) ) {
108 if ( can_load
( modules
=> { 'Cache::Memory' => undef } )
109 && _initialize_memory
($self) )
111 $self->{'cache'} = $self->{'memory_cache'};
115 $ENV{DEBUG
} && carp
"Selected caching system: " . ($self->{'cache'} // 'none');
122 sub _initialize_memcached
{
123 my ($self, @servers) = @_;
125 return unless @servers;
128 && carp
"Memcached server settings: "
129 . join( ', ', @servers )
131 . $self->{'namespace'};
132 # Cache::Memcached::Fast doesn't allow a default expire time to be set
133 # so we force it on setting.
134 my $memcached = Cache
::Memcached
::Fast
->new(
136 servers
=> \
@servers,
137 compress_threshold
=> 10_000
,
138 namespace
=> $self->{'namespace'},
143 # Ensure we can actually talk to the memcached server
144 my $ismemcached = $memcached->set('ismemcached','1');
145 unless ($ismemcached) {
146 warn "\nConnection to the memcached servers '@servers' failed. Are the unix socket permissions set properly? Is the host reachable?\nIf you ignore this warning, you will face performance issues\n";
149 $self->{'memcached_cache'} = $memcached;
153 sub _initialize_fastmmap
{
155 my ($cache, $share_file);
157 # Temporary workaround to catch fatal errors when: C4::Context module
158 # is not loaded beforehand, or Cache::FastMmap init fails for whatever
159 # other reason (e.g. due to permission issues - see Bug 13431)
161 $share_file = join( '-',
162 "/tmp/sharefile-koha", $self->{'namespace'},
163 C4
::Context
->config('hostname'), C4
::Context
->config('database') );
165 $cache = Cache
::FastMmap
->new(
166 'share_file' => $share_file,
167 'expire_time' => $self->{'timeout'},
168 'unlink_on_exit' => 0,
172 warn "FastMmap cache initialization failed: $@";
175 return unless defined $cache;
176 $self->{'fastmmap_cache'} = $cache;
180 sub _initialize_memory
{
183 # Default cache time for memory is _always_ short unless it's specially
184 # defined, to allow it to work reliably in a persistent environment.
185 my $cache = Cache
::Memory
->new(
186 'namespace' => $self->{'namespace'},
187 'default_expires' => "$self->{'timeout'} sec" || "10 sec",
189 $self->{'memory_cache'} = $cache;
190 # Memory cache can't handle complex types for some reason, so we use its
191 # freeze and thaw functions.
192 $self->{ref($cache) . '_set'} = sub {
193 my ($key, $val, $exp) = @_;
194 # Refer to set_expiry in Cache::Entry for why we do this 'sec' thing.
195 $exp = "$exp sec" if defined $exp;
196 # Because we need to use freeze, it must be a reference type.
197 $cache->freeze($key, [$val], $exp);
199 $self->{ref($cache) . '_get'} = sub {
200 my $res = $cache->thaw(shift);
201 return unless defined $res;
207 =head2 is_cache_active
209 Routine that checks whether or not a default caching method is active on this
214 sub is_cache_active
{
216 return $self->{'cache'} ?
1 : 0;
221 $cache->set_in_cache($key, $value, [$options]);
223 Save a value to the specified key in the cache. A hashref of options may be
226 The possible options are:
232 Expiry time of this cached entry in seconds.
236 The cache object to use if you want to provide your own. It should be an
237 instance of C<Cache::*> and follow the same interface as L<Cache::Memcache>.
244 my ( $self, $key, $value, $options ) = @_;
246 my $unsafe = $options->{unsafe
} || 0;
248 # the key mustn't contain whitespace (or control characters) for memcache
249 # but shouldn't be any harm in applying it globally.
250 $key =~ s/[\x00-\x20]/_/g;
252 my $cache = $options->{cache
} || 'cache';
253 croak
"No key" unless $key;
254 $ENV{DEBUG
} && carp
"set_in_cache for $key";
256 return unless ( $self->{$cache} && ref( $self->{$cache} ) =~ m/^Cache::/ );
257 my $expiry = $options->{expiry
};
258 $expiry //= $self->{timeout
};
259 my $set_sub = $self->{ref($self->{$cache}) . "_set"};
261 my $flag = '-CF0'; # 0: scalar, 1: frozen data structure
263 # Set in L1 cache as a data structure
264 # We only save the frozen form: we do want to save $value in L1
265 # directly in order to protect it. And thawing now may not be
266 # needed, so improves performance.
267 $value = $L1_encoder->encode($value);
268 $L1_cache{$self->{namespace
}}{$key}->{frozen
} = $value;
271 # Set in L1 cache as a scalar; exit if we are caching an undef
272 $L1_cache{$self->{namespace
}}{$key} = $value;
273 return if !defined $value;
277 # We consider an expiry of 0 to be infinite
280 ?
$set_sub->( $key, $value, $expiry )
281 : $self->{$cache}->set( $key, $value, $expiry );
285 ?
$set_sub->( $key, $value )
286 : $self->{$cache}->set( $key, $value );
290 =head2 get_from_cache
292 my $value = $cache->get_from_cache($key, [ $options ]);
294 Retrieve the value stored under the specified key in the cache.
296 The possible options are:
302 If set, this will avoid performing a deep copy of the item. This
303 means that it won't be safe if something later modifies the result of the
304 function. It should be used with caution, and could save processing time
305 in some situations where is safe to use it. Make sure you know what you are doing!
309 The cache object to use if you want to provide your own. It should be an
310 instance of C<Cache::*> and follow the same interface as L<Cache::Memcache>.
317 my ( $self, $key, $options ) = @_;
318 my $cache = $options->{cache
} || 'cache';
319 my $unsafe = $options->{unsafe
} || 0;
320 $key =~ s/[\x00-\x20]/_/g;
321 croak
"No key" unless $key;
322 $ENV{DEBUG
} && carp
"get_from_cache for $key";
323 return unless ( $self->{$cache} && ref( $self->{$cache} ) =~ m/^Cache::/ );
325 # Return L1 cache value if exists
326 if ( exists $L1_cache{$self->{namespace
}}{$key} ) {
327 if (ref($L1_cache{$self->{namespace
}}{$key})) {
329 # ONLY use thawed for unsafe calls !!!
330 $L1_cache{$self->{namespace
}}{$key}->{thawed
} ||= $L1_decoder->decode($L1_cache{$self->{namespace
}}{$key}->{frozen
});
331 return $L1_cache{$self->{namespace
}}{$key}->{thawed
};
333 return $L1_decoder->decode($L1_cache{$self->{namespace
}}{$key}->{frozen
});
336 # No need to thaw if it's a scalar
337 return $L1_cache{$self->{namespace
}}{$key};
341 my $get_sub = $self->{ref($self->{$cache}) . "_get"};
342 my $L2_value = $get_sub ?
$get_sub->($key) : $self->{$cache}->get($key);
344 return if ref($L2_value);
345 return unless (defined($L2_value) && length($L2_value) >= 4);
347 my $flag = substr($L2_value, -4, 4, '');
348 if ($flag eq '-CF0') {
350 $L1_cache{$self->{namespace
}}{$key} = $L2_value;
352 } elsif ($flag eq '-CF1') {
353 # it's a frozen data structure
355 eval { $thawed = $L1_decoder->decode($L2_value); };
357 $L1_cache{$self->{namespace
}}{$key}->{frozen
} = $L2_value;
358 # ONLY save thawed for unsafe calls !!!
359 $L1_cache{$self->{namespace
}}{$key}->{thawed
} = $thawed if $unsafe;
363 # Unknown value / data type returned from L2 cache
367 =head2 clear_from_cache
369 $cache->clear_from_cache($key);
371 Remove the value identified by the specified key from the default cache.
375 sub clear_from_cache
{
376 my ( $self, $key, $cache ) = @_;
377 $key =~ s/[\x00-\x20]/_/g;
379 croak
"No key" unless $key;
380 return unless ( $self->{$cache} && ref( $self->{$cache} ) =~ m/^Cache::/ );
382 # Clear from L1 cache
383 delete $L1_cache{$self->{namespace
}}{$key};
385 return $self->{$cache}->delete($key)
386 if ( ref( $self->{$cache} ) =~ m
'^Cache::Memcached' );
387 return $self->{$cache}->remove($key);
394 Clear the entire default cache.
399 my ( $self, $cache ) = shift;
401 return unless ( $self->{$cache} && ref( $self->{$cache} ) =~ m/^Cache::/ );
403 $self->flush_L1_cache();
405 return $self->{$cache}->flush_all()
406 if ( ref( $self->{$cache} ) =~ m
'^Cache::Memcached' );
407 return $self->{$cache}->clear();
412 delete $L1_cache{$self->{namespace
}};
415 =head1 TIED INTERFACE
417 Koha::Cache also provides a tied interface which enables users to provide a
418 constructor closure and (after creation) treat cached data like normal reference
419 variables and rely on the cache Just Working and getting updated when it
422 my $cache = Koha::Cache->new();
423 my $data = 'whatever';
424 my $scalar = Koha::Cache->create_scalar(
428 'constructor' => sub { return $data; },
431 print "$$scalar\n"; # Prints "whatever"
432 $data = 'somethingelse';
433 print "$$scalar\n"; # Prints "whatever" because it is cached
434 sleep 2; # Wait until the cache entry has expired
435 print "$$scalar\n"; # Prints "somethingelse"
437 my $hash = Koha::Cache->create_hash(
441 'constructor' => sub { return $data; },
444 print "$$variable\n"; # Prints "whatever"
446 The gotcha with this interface, of course, is that the variable returned by
447 create_scalar and create_hash is a I<reference> to a tied variable and not a
448 tied variable itself.
450 The tied variable is configured by means of a hashref passed in to the
451 create_scalar and create_hash methods. The following parameters are supported:
457 Required. The key to use for identifying the variable in the cache.
461 Required. A closure (or reference to a function) that will return the value that
462 needs to be stored in the cache.
466 Optional. A closure (or reference to a function) that gets run to initialize
467 the cache when creating the tied variable.
471 Optional. Array reference with the arguments that should be passed to the
472 constructor function.
476 Optional. The cache timeout in seconds for the variable. Defaults to 600
481 Optional. Which type of cache to use for the variable. Defaults to whatever is
482 set in the environment variable CACHING_SYSTEM. If set to 'null', disables
483 caching for the tied variable.
487 Optional. Boolean flag to allow the variable to be updated directly. When this
488 is set and the variable is used as an l-value, the cache will be updated
489 immediately with the new value. Using this is probably a bad idea on a
490 multi-threaded system. When I<allowupdate> is not set to true, using the
491 tied variable as an l-value will have no effect.
495 Optional. A closure (or reference to a function) that should be called when the
496 tied variable is destroyed.
500 Optional. Boolean flag to tell the object to remove the variable from the cache
501 when it is destroyed or goes out of scope.
505 Optional. Boolean flag to tell the object not to refresh the variable from the
506 cache every time the value is desired, but rather only when the I<local> copy
507 of the variable is older than the timeout.
513 my $scalar = Koha::Cache->create_scalar(\%params);
515 Create scalar tied to the cache.
520 my ( $self, $args ) = @_;
522 $self->_set_tied_defaults($args);
524 tie
my $scalar, 'Koha::Cache::Object', $args;
529 my ( $self, $args ) = @_;
531 $self->_set_tied_defaults($args);
533 tie
my %hash, 'Koha::Cache::Object', $args;
537 sub _set_tied_defaults
{
538 my ( $self, $args ) = @_;
540 $args->{'timeout'} = '600' unless defined( $args->{'timeout'} );
541 $args->{'inprocess'} = '0' unless defined( $args->{'inprocess'} );
542 unless ( $args->{cache_type
} and lc( $args->{cache_type
} ) eq 'null' ) {
543 $args->{'cache'} = $self;
544 $args->{'cache_type'} ||= $ENV{'CACHING_SYSTEM'};
560 Chris Cormack, E<lt>chris@bigballofwax.co.nzE<gt>
561 Paul Poulain, E<lt>paul.poulain@biblibre.comE<gt>
562 Jared Camins-Esakov, E<lt>jcamins@cpbibliography.comE<gt>