Laravel 5.2 predis 在用 Redis 集群发布订阅时报错

按着laravel5.2的redis发布订阅文档来操作的结构报错:
我的配置文件:
'redis1' => [
'cluster' => true,
'default' => [
'host' => '127.0.58.176',
'port' => 6373,
],
'redis1' => [
'host' => '127.0.58.176',
'port' => 6375,
],
'options'=>[
'cluster'=>'redis',
],
],
运行:
public function index(){
$arr = array('1'=>'shi',2=>'is');
$res = Redis::publish("test-channel",json_encode($arr));
return $res;

报错:
NotSupportedException in RedisCluster.php line 380:
Cannot use 'PUBLISH' with redis-cluster.

Silencewj
《L01 基础入门》
我们将带你从零开发一个项目并部署到线上,本课程教授 Web 开发中专业、实用的技能,如 Git 工作流、Laravel Mix 前端工作流等。
《L05 电商实战》
从零开发一个电商项目,功能包括电商后台、商品 & SKU 管理、购物车、订单管理、支付宝支付、微信支付、订单退款流程、优惠券等
讨论数量: 2

文章格式注意下,这样子看着很吃力,改一改说不定就有人来回答了

6年前 评论

虽然我没有验证cluster下是否支持pubsub(cluster下比如不支持multi)。但从下面的代码看出,大概和hash solt有关。

    public function getConnection(CommandInterface $command)
    {
        $slot = $this->strategy->getSlot($command);
        if (!isset($slot)) {
            throw new NotSupportedException(
                "Cannot use '{$command->getId()}' with redis-cluster."
            );
        }
        if (isset($this->slots[$slot])) {
            return $this->slots[$slot];
        } else {
            return $this->getConnectionBySlot($slot);
        }
    }

如果你想要进一步验证,可以考虑debug这段代码。

6年前 评论

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!