真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

swoole監(jiān)聽(tīng)redis數(shù)據(jù)的方法

這篇文章將為大家詳細(xì)講解有關(guān)swoole監(jiān)聽(tīng)redis數(shù)據(jù)的方法,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

公司主營(yíng)業(yè)務(wù):成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、移動(dòng)網(wǎng)站開(kāi)發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。創(chuàng)新互聯(lián)是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開(kāi)放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來(lái)驚喜。創(chuàng)新互聯(lián)推出平塘免費(fèi)做網(wǎng)站回饋大家。

swoole如何監(jiān)聽(tīng)redis數(shù)據(jù)?

Laravel使用swoole監(jiān)聽(tīng)redis

開(kāi)始之前,請(qǐng)先確保redis已經(jīng)正確安裝,并正常運(yùn)行。

Laravel代碼

在App\Events目錄下新建RedisTest事件

message = $message;
    }
    /**
    * Get the channels the event should broadcast on.
    *
    * @return \Illuminate\Broadcasting\Channel|array
    */
    public function broadcastOn()
    {
        return new PrivateChannel('channel-name');
    }
}

App\Listeners\RedisTestListener 監(jiān)聽(tīng)事件代碼

message;
        Log::info('the message received from subscribed redis channel msg_0: '.$message);
    }
}

App\Providers\EventServiceProvider 登記事件/監(jiān)聽(tīng)關(guān)系

protected $listen = [
        'App\Events\RedisTest' => [
            'App\Listeners\RedisTestListener',
        ],
    ];

監(jiān)聽(tīng)命令

App\Console\Commands\RedisSubscribe 代碼如下

on('message', function (swoole_redis $client, $result) {
            var_dump($result);
            static $more = false;
            if (!$more and $result[0] == 'message')
            {
                echo "trigger Event RedisTest\n";
                Event::fire(new RedisTest($result[2]));
            }
        });
        $client->connect('127.0.0.1', 6379, function (swoole_redis $client, $result) {
            echo "connect\n";
            $client->subscribe('msg_0');
        });
    }
}

Laravel部分代碼完成

==================================

supervisor 管理進(jìn)程

在 /etc/supervisor/conf.d 文件夾下新建 echo.conf , 代碼如下

[group:echos]
programs=echo-queue,echo-redis
[program:echo-queue]
command=php artisan queue:work
directory=/home/bella/Downloads/lnmp/echo1.0/echo
user=bella
autorestart=true
redirect_stderr=true
stdout_logfile=/home/bella/Downloads/lnmp/echo1.0/echo/storage/logs/queue.log
loglevel=info
[program:echo-redis]
command=php artisan redis:subscribe
directory=/home/bella/Downloads/lnmp/echo1.0/echo
user=bella
autorestart=true
redirect_stderr=true
stdout_logfile=/home/bella/Downloads/lnmp/echo1.0/echo/storage/logs/redis.log
loglevel=info

完成后,執(zhí)行以下命令重載

supervisorctl reload

=================================

進(jìn)入redis 客戶端,發(fā)布一個(gè)廣播通知到 msg_0 頻道

publish msg_0 "Hello Bella"

如果 laravel目錄下的 storage\logs\laravel.log 最后的日志中記錄了廣播發(fā)送的通知,則redis監(jiān)聽(tīng)功能實(shí)現(xiàn)

關(guān)于swoole監(jiān)聽(tīng)redis數(shù)據(jù)的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。


網(wǎng)站名稱:swoole監(jiān)聽(tīng)redis數(shù)據(jù)的方法
本文路徑:http://weahome.cn/article/jghgii.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部