|
$this->load->driver('cache',array(
'adapter'=>'file',
'backup'=>'memcached'));
加载了 memcached.php 也放在 config文件夹内了,
但配置 如何写啊,
$config['memcache'] = array(
'memcache1'=>array(
'hostname'=>'localhost',
'port'=>'11211',
'weight'=>1),
'memcache1'=>array(
'hostname'=>'localhost',
'port'=>'11211',
'weight'=>1));
这样的配置可以嘛?为什么CI 文档没有介绍配置啊, 求高手, 如何多分布的memcache 配置 |
|