我正试图在redis频道发布一条消息。当我在channel does not work中发布消息时,响应返回为0,在redis cli中我看不到该消息。
我把代码放在这里:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Redis;
class publishController extends Controller
{
public function test ()
{
$result = Redis::publish('test', json_encode(['mss' => 'here the message']));
return $result;
}
}
这是cache.php文件
'redis' => [
'driver' => 'redis',
'connection' => 'cache',
],
这是我的.env文件
REDIS_HOST=localhost
REDIS_PASSWORD=null
REDIS_PORT=6379
暂无答案!
目前还没有任何答案,快来回答吧!