Yii memcache 保存 session
在配置文件组件中配置'mcache' => array(
'class' => 'system.caching.CMemCache',
'servers' => array(
array('host' => '127.0.0.1', 'port' => 11211),
),
),
'session' => array (
//'sessionName' => 'PHPSESSID',
'class'=> 'CCacheHttpSession',
'cacheID' => 'mcache',
//'autoStart' => true,
'cookieMode' => 'only',
'timeout' => 1200
),
OK,这样就可以了。
页:
[1]