配置Phalcon Flash输出以使用特定的会话适配器

时间:2015-01-17 02:14:15

标签: php phalcon

我使用Phalcon Flash服务在HTTP重定向之间存储临时消息。

在我最近更改为数据库会话适配器之前,它工作得很好。现在,Flash消息正存储在数据库中,但不会被删除。

我不希望这些消息触及数据库,因此我在DI中设置了以前的会话方法,但是在新的 tempSession 条目下。

public function initTempSession($options = [])
{
    $this->di->set(
        'tempsession',
        function () {
            $tempSession = new PhSession();
            $tempSession->start();
            return $tempSession;
        },
        true
    );
}

如何配置闪存服务以使用此会话功能,而不是默认'数据库适配器?

0 个答案:

没有答案