Fusio api缓存配置

时间:2017-09-25 09:21:18

标签: php doctrine

用Google搜索并尝试,但失败了。

如何配置Fusio以使用redis。?

//'psx_cache_factory'       => null,

这不起作用:

 'psx_cache_factory'       => 'redis'

这也不起作用:

'psx_cache_factory'       => 'redis://127.0.0.1:6379',

1 个答案:

答案 0 :(得分:0)

由开发人员回答。

Github

'psx_cache_factory'       => function($config, $namespace){
    $client = new \Predis\Client([
        'scheme' => 'tcp',
        'host'   => '10.0.0.1',
        'port'   => 6379,
    ]);

    return new \Doctrine\Common\Cache\PredisCache($client);
},