<<

NAME

Koha::Cache::Memory::Lite - Handling caching of objects in memory *only* for Koha

SYNOPSIS

  use Koha::Cache::Memory::Lite;
  my $cache = Koha::Cache::Memory::Lite->get_instance();
  $cache->set($key, $value);
  my $retrieved_from_cache_value = $cache->get($key);
  $cache->clear_from_cache($key);
  $cache->flush();

DESCRIPTION

Koha in memory only caching routines.

<<