那个输入以下命令安装 GB Redis Setup :composer require glowingblue/redis-setup
启动后,网站就坏了,
后来改用安装blomstra/flarum-redis并修改extend.php成功。
装上后,修改extens.php
return [
(new Blomstra\Redis\Extend\Redis([
'host' => '127.0.0.1',
'password' => null,
'port' => 6379,
'database' => 1,
]))
->useDatabaseWith('cache', 1)
->useDatabaseWith('queue', 2)
->useDatabaseWith('session', 3)
];
注意修改host为你的redis容器名,password为你的password。