Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17650 программистов и 1372 робота. Сейчас ищут 1549 программистов ...
Class Summary Translation2_Decorator_CacheMemory
Вернуться к: Translation2
Class Summary Translation2_Decorator_CacheMemory
Class Summary Translation2_Decorator_CacheMemory – Decorator to cache fetched data in memory
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
?>
Вернуться к: Translation2