I can't seem to find proper documentation about the master_file option for caching config files...
1) What is the master_file actually? what should it contain?
2) Where is a logical place to place it? Not in /cache/ I guess... as I don't want other cache objects to kill it...
PHP Code:
<?php
$cacheConf = $configuration->get('cache');
$frontendOptions = array(
'lifetime' => null,
'automatic_serialization' => true,
'master_file' => $cacheConf->master_file
);
$backendOptions = array(
'cache_dir' => $cacheConf->dir,
'read_control_type' => $cacheConf->read_control_type
);
$cache = Zend_Cache::factory('File', 'File', $frontendOptions, $backendOptions);
?>