Do I need to manually set
Code: Select all
$cache->setCaching( 1 );
Do I need to ensure that wrap method calls like so:
Code: Select all
$rows = $cache->call( 'testFunction' );
[code]<param name="cache" type="list" default="1" label="Caching" description="Cache On or Off">
<option value="1">Use global</option>
<option value="0">No caching</option>
</param>[/code]
However the time param does not seem to be honored:
[code]<param name="cache_time" type="text" default="900" label="Cache Time" description="Time before the module is recached" />[/code]
It seems some extension use advanced caching and I would like to know what some scenarios are for implementing something like that. Thanks.