用Google搜索并尝试,但失败了。
如何配置Fusio以使用redis。?
//'psx_cache_factory' => null,
这不起作用:
'psx_cache_factory' => 'redis'
这也不起作用:
'psx_cache_factory' => 'redis://127.0.0.1:6379',
答案 0 :(得分:0)
由开发人员回答。
'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);
},