<<

NAME

Koha::Cache - Handling caching of html and Objects for Koha

SYNOPSIS

  use Koha::Cache (cache_type => $cache_type, %params );

DESCRIPTION

Base class for Koha::Cache::X. Subclasses must provide the following methods

_cache_handle ($params_hr) - cache handle creator

Subclasses may override the following methods if they are not using a CHI-derived cache

set_in_cache ($key, $value, $expiry)

get_from_cache ($key)

clear_from_cache ($key)

flush_all ()

FUNCTIONS

EXPORT

None by default.

SEE ALSO

Koha::Cache::Memcached

AUTHOR

Chris Cormack, <chris@bigballofwax.co.nz> Paul Poulain, <paul.poulain@biblibre.com> Jared Camins-Esakov, <jcamins@cpbibliography.com>

<<