- 普通 - 未处理
config.php 设置
'DATA_CACHE_TYPE' => 'Memcache',//默认缓存为 Memcache public function test(){
S('DATA','this is data');
dump(S('DATA'));
S('OTHERDATA','this is otherdata',500,'File');//如果把File 改为 Memcache 就正常了
dump(S('OTHERDATA'));
}发现 OTHERDATA 不能缓存,但是 将S('OTHERDATA','this is otherdata',500,'File');
改为
S('OTHERDATA','this is otherdata',500,'Memcache');
就正常了附上截图[attach]2776[/attach]
[attach]2777[/attach]
