在我的开发系统(Ubuntu 11.10)上,我将缓存文件写入/tmp
没有问题,但我担心部署后应用程序会发生什么。我目前有共享主机,所以我猜我将无法访问该目录?我的应用程序目录如下:
MyApp
- application
- cache
- configs
- controllers
- forms
- layouts
- logs
- models
- views
- docs
- library
- public
- tests
我在我的应用程序目录中创建了一个名为缓存的自定义文件夹(如上图所示),然后使用以下内容进行配置:
$frontendOptions = array('lifeTime' => (strtotime('tomorrow') - time()));
$backendOptions = array('cacheDir' => '../application/cache/');
$cache = Zend_Cache::factory('Core', 'File', $frontendOptions, $backendOptions);
我使用路径../application/cache/
,因为Zend_Framework中的所有内容都是从位于public
文件夹中的index.php(即前端控制器)引用的。
当我这样做时,它仍然会将我的缓存写入/tmp
文件夹。我错过了什么?
我想你有一个打字错误:
$backendOptions = array('cache_dir' => '../application/cache/');
非cacheDir
:
http://framework.zend.com/manual/en/zend.cache.backends.html