91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

workerman實現聊天系統的方法

發布時間:2020-12-19 11:32:38 來源:億速云 閱讀:444 作者:小新 欄目:編程語言

這篇文章主要介紹workerman實現聊天系統的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

安裝 thinkphp5.1

composer create-project topthink/think=5.1.x-dev tp5andWorkerman

安裝 think-worker

composer require topthink/think-worker=2.0.*

直接安裝 Workerman

composer require workerman/workerman

(2)我們先看 think-worker 的代碼

config/worker_server.php

先來個服務器廣播消息的示例,每10秒鐘定時廣播一條消息

'onWorkerStart'  => function ($worker) {
    \Workerman\Lib\Timer::add(10, function()use($worker){
        // 遍歷當前進程所有的客戶端連接,發送自定義消息
        foreach($worker->connections as $connection){
            $send['name'] = '系統信息';
            $send['content'] = '這是一個定時任務信息';
            $send['time'] = time();
            $connection->send(json_encode($send));
        }
    });}

但是在 onMessage 時,我們獲取不到 $worker 對象,所以無法廣播消息。

'onMessage'      => function ($connection, $data) {
    $origin = json_decode($data,true);
    $send['name'] = '廣播數據';
    $send['content'] = $origin['content'];
    $message = json_encode($send);

    foreach($worker->connections as $connection)
    {
        $connection->send($message);
    }}

修改框架內部的代碼:/vendor/topthink/think-worker/src/command/Server.php,主要是把 onMessage 方法自己加進去

use() 就是把外部變量傳遞到函數內部使用,或者使用global $worker

$worker = new Worker($socket, $context);$worker->onMessage = function ($connection, $data)use($worker) {
    $origin = json_decode($data,true);
    $send['name'] = '廣播數據';
    $send['content'] = $origin['content'];
    $send['uid'] = $connection->uid;
    $message = json_encode($send);
    foreach($worker->connections as $connection)
    {
        $connection->send($message);
    }};

這樣,我們就能夠獲取到 $worker 對象了

$worker->onMessage = function ($connection, $data)use($worker) { ... }

(3)$connection 綁定 uid

其實你早都已經看出,$worker->connections 獲取到的是當前所有用戶的連接,connections 即為其中一個鏈接。

記錄websocket連接時間:

$worker->onConnect = function ($connection) {
    $connection->login_time = time();};

獲取websocket連接時間:

$worker->onMessage = function ($connection, $data)use($worker) {
    $login_time = $connection->login_time;};

由此可以看出,我們可以把數據綁定到 $connection 連接的一個屬性,例如:

$connection->uid = $uid;

當JavaScript端在連接websocket服務器成功后,即把自己的 uid 立馬發送服務端綁定:

var uid = 600;ws.onopen = function() {
    ws.send(JSON.stringify({bind:'yes',uid:uid}));};
$worker->onMessage = function ($connection, $data)use($worker) {
    $origin = json_decode($data,true);
    if(array_key_exists('bind',$origin)){
        $connection->uid = $origin['uid'];
    }};

(4)單播發送消息,即自定義發送

$worker->onMessage = function ($connection, $data)use($worker) {
    $origin = json_decode($data,true);
    $sendTo = $origin['sendto']; // 需要發送的對方的uid
    $content = $origin['content']; // 需要發送到對方的內容
    foreach($worker->connections as $connection)
    {
        if( $connection->uid == $sendTo){
            $connection->send($content);
        }
    }};

到此,已經完成基于 Workerman 的自定義對象發送消息。

由于該php文件存放于composer中,只需要把該文件復制出來,放到application/command,修改命名空間,即可保存到自己的項目中

(5)存儲聊天記錄

使用 Redis 做緩存對服務器影響較小,且基本不影響響應時間

1、把聊天記錄存儲到 Redis 中,使用列表存儲

$message = json_decode($data,true); // $data為接收到的數據
$redis_instance = Cache::handler(); // TP5代碼獲取Cache實例
$redis_instance->lPush('message',json_encode($message,JSON_UNESCAPED_UNICODE));

2、某些情況下,當用戶第一次(或刷新)聊天頁面時,顯示最近10條記錄

$redis_instance = Cache::handler(); // TP5代碼獲取Cache實例
$worker->onConnect = function ($connection)use($redis_instance) {
    $length = $redis_instance->lLen('message');
    if($length > 0){
        $send['recently'] = array_reverse($redis_instance->lRange('message', 0, 10));
        $send['state'] = 200;
        $message = json_encode($send,JSON_UNESCAPED_UNICODE);
        $connection->send($message);
    }else{
        $send['state'] = 204;
        $send['recently'] = [];
        $send['msg'] = '暫無聊天記錄';
        $message = json_encode($send,JSON_UNESCAPED_UNICODE);
        $connection->send($message);
    }
};

javascript獲取到 recently 最近聊天記錄時處理:

ws.onmessage = function(e) {
    var your = JSON.parse(e.data);
    if(your.recently){
        // 初次打開頁面,渲染最近10條聊天記錄
        $.each(your.recently,function(index,item){
            item = JSON.parse(item);
            // TODO:遍歷渲染頁面
        });
    }else{
        // 處理其他消息
        msglist.append('<li>'+your.content+'</li>');
    }
};

以上是“workerman實現聊天系統的方法”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江陵县| 资讯| 德格县| 比如县| 江源县| 新郑市| 平乐县| 常宁市| 苏州市| 改则县| 宁德市| 新密市| 满城县| 衡山县| 航空| 西华县| 健康| 萝北县| 鲁山县| 澄迈县| 浑源县| 泉州市| 兴国县| 黎川县| 衢州市| 扬州市| 青田县| 昆山市| 泊头市| 抚宁县| 南投市| 泾阳县| 江门市| 连云港市| 新平| 盐源县| 岳阳市| 图木舒克市| 正阳县| 张家口市| 湖南省|