<<

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

  B<_cache_handle  ($params_hr)> - cache handle creator                         
  B<set_in_cache   ($key, $value, $expiry)>                                     
  B<get_from_cache ($key)>                                                      
  B<clear_from_cache ($key)>                                                    
  B<flush_all      ()>  

FUNCTIONS

EXPORT

  None by default.

SEE ALSO

  C4::Cache::Memcached

AUTHOR

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

<<