<<

NAME

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

SYNOPSIS

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

DESCRIPTION

Base class for C4::Cache::X. Subclasses need to provide the following methods

_cache_handle ($params_hr) - cache handle creator

set_in_cache ($key, $value, $expiry)

get_from_cache ($key)

clear_from_cache ($key)

flush_all ()

FUNCTIONS

EXPORT

None by default.

SEE ALSO

C4::Cache::Memcached

AUTHOR

Chris Cormack, <chris@bigballofwax.co.nz>

<<