Class Summary Translation2_Decorator_CacheMemory

Class Summary Translation2_Decorator_CacheMemory – Decorator to cache fetched data in memory

CacheMemory Decorator Example

This decorator provides a memory cache layer. It does NOT persist through requests, only in the current execution of the script. You can turn off prefetch if you want small network load (but it will increase the number of queries to the database)

<?php
$tr 
= new Translation2($driver$dbinfo$params);
$tr =& $tr->getDecorator('CacheMemory');
$tr->setOption('prefetch'true); //default value is true
?>
Decorator to cache fetched data using Cache_Lite_Function class (Previous) Decorator to provide a fallback text for empty strings. (Next)
Last updated: Sat, 16 Feb 2019 — Download Documentation
Do you think that something on this page is wrong? Please file a bug report.
View this page in:
  • English

User Notes:

There are no user contributed notes for this page.