我正在尝试在我的Yii应用程序中启用PHP会话的memcache,但在启用此内存缓存后,yii注销无效。
/**
* Logs out the current user and redirect to homepage.
*/
public function actionLogout()
{
Yii::app()->user->logout();
$this->redirect(Yii::app()->homeUrl);
}
请有人帮助我提出宝贵的建议!!!