因为sae作为云计算平台式无法进行文件读写操作的,所以Smarty中输出的缓存文件就无法实现。
但是sae提供了一个很好的方式可以实现文件的读写操作。那就是使用Memcache
http://skirt.sinaapp.com/html/332.html
上面这个网址教了怎么开启Memcache
开启之后再在config文件里增加
$link = memcache_init(); $smarty->compile_dir = 'saemc://smartytpl/'; $smarty->cache_dir = 'saemc://smartytpl/'; $smarty->compile_locking = false;
以上四句代码即可,这样就可以执行运行了
时间: 2024-10-12 11:46:22