Koha::Cache::Memory::Lite - Handling caching of objects in memory *only* for Koha
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();
Koha in memory only caching routines.