国产+高潮+在线,国产 av 仑乱内谢,www国产亚洲精品久久,51国产偷自视频区视频,成人午夜精品网站在线观看

自定義群組發(fā)送消息其他人收不到

hello21st

問題描述

自定義群組發(fā)送消息其他人收不到,但發(fā)送完之后服務(wù)器有日志記錄,請問會是哪里的問題?

程序代碼或配置

class MsgHandler_SayInClientGroup extends MsgHandlerBase{
    public function processEvent(EventProxy $proxy,$client_id,$message_data)
    {
        ...
        $new_message_json = json_encode($new_message);
        Gateway::sendToGroup($group_id ,$new_message_json);
        ChatMsgDB::getInstance()->logMsg($new_message_json, __CLASS__,__LINE__,__FUNCTION__);
    }
}
MsgHandler_SayInClientGroup::AutoRegister();

[Time:2024-11-13 16:25:02]{"chat_info":"3333#test06#8","time":1731486302,"msg_id":36,"type":"say"}[Type:ChatMsg][ErrorLevel4][Class:Chat\ChatCommon\ChatMsgDB][Function:logMsg][Line:88][IP:127.0.0.1]
[Time:2024-11-13 16:25:08]{"chat_info":"4444#test03#3","time":1731486308,"msg_id":37,"type":"say"}[Type:ChatMsg][ErrorLevel4][Class:Chat\ChatCommon\ChatMsgDB][Function:logMsg][Line:88][IP:127.0.0.1]

操作系統(tǒng)環(huán)境及workerman/webman等具體版本

465 2 0
2個回答

walkor 打賞

可能是其他人沒加入分組,或者其他人的連接已經(jīng)斷開

  • hello21st 2024-11-14

    如何快速定位排查?謝謝

  • walkor 2024-11-14

    記錄日志

  • hello21st 2024-11-15

    windows正常,linux會出現(xiàn)一方能收到,另一方收不到的情況,如用戶3能收到用戶8的消息,用戶8收不到用戶3的。刷新頁面后都能看到(做了歷史記錄保存)

    windows 日志:
    [onMessage]--7f00000108fc00000001--{"type":"login","accid":"5","token":"0ba37cd9389027fcc8bf73683b572ae6824e7db0619621042431b79325f37ac3","time":"1731491534","version":"0.1.16"}
    [onMessage]--7f00000108fc00000001--{"type":"join_cligroup","group_id":"1079","player_id":"5"}
    [onMessage]--7f00000108fc00000001--{"type":"get_cligroup_msglist","group_id":"1079","start_msgid":0,"end_msgid":100}
    [onMessage]--7f00000108fc00000002--{"type":"login","accid":"6","token":"fa81c601f46159fa6dd3c2a1b9a81273250ecebdd73c95fc3cfa7b2f7d09d0bf","time":"1731491534","version":"0.1.16"}
    [onMessage]--7f00000108fc00000002--{"type":"join_cligroup","group_id":"1079","player_id":"6"}
    [onMessage]--7f00000108fc00000002--{"type":"get_cligroup_msglist","group_id":"1079","start_msgid":0,"end_msgid":100}
    [onMessage]--7f00000108fc00000002--{"type":"say_cligroup","group_id":"1079","chat_info":"33333#test06#6"}
    [onMessage]--7f00000108fc00000001--{"type":"say_cligroup","group_id":"1079","chat_info":"44444#test05#5"}
    [onMessage]--7f00000108fc00000002--{"type":"say_cligroup","group_id":"1079","chat_info":"555555555555#test06#6"}
    [onMessage]--7f00000108fc00000001--{"type":"say_cligroup","group_id":"1079","chat_info":"66666666666666#test05#5"}

    linux日志:
    [2024-11-15 17:16:13][7f000001090100000008][onMessage]{"type":"login","accid":"8","token":"00078b24a239a43ed6dd319a63cd53eb9aebffb8eff47901b035e83a63b552be","time":"1731491534","version":"0.1.16"}
    [2024-11-15 17:16:13][7f000001090100000008][onMessage]{"type":"join_cligroup","group_id":"1079","player_id":"8"}
    [2024-11-15 17:16:13][7f000001090100000008][onMessage]{"type":"get_cligroup_msglist","group_id":"1079","start_msgid":0,"end_msgid":100}
    [2024-11-15 17:16:32][7f00000108fd00000008][onMessage]{"type":"login","accid":"3","token":"ec36094077f4d8bd4c3598a2e107a4841a06aa0de18801e1fed660c6942557a4","time":"1731491534","version":"0.1.16"}
    [2024-11-15 17:16:32][7f00000108fd00000008][onMessage]{"type":"join_cligroup","group_id":"1079","player_id":"3"}
    [2024-11-15 17:16:32][7f00000108fd00000008][onMessage]{"type":"get_cligroup_msglist","group_id":"1079","start_msgid":0,"end_msgid":100}
    [2024-11-15 17:16:39][7f00000108fd00000008][onMessage]{"type":"say_cligroup","group_id":"1079","chat_info":"hhhhhhhhhh#test03#3"}
    [2024-11-15 17:16:46][7f000001090100000008][onMessage]{"type":"say_cligroup","group_id":"1079","chat_info":"ggggg#test06#8"}
    [2024-11-15 17:19:36][7f000001090100000008][onMessage]{"type":"say_cligroup","group_id":"1079","chat_info":"11111#test06#8"}
    [2024-11-15 17:19:40][7f00000108fd00000008][onMessage]{"type":"say_cligroup","group_id":"1079","chat_info":"3333333333#test03#3"}

小七他哥

workerman現(xiàn)在都4了,直接升級

  • 德瑪西亞 2024-11-14

    現(xiàn)在不是5了嗎

  • 小七他哥 2024-11-14

    穩(wěn)定版好像是 4

  • hello21st 2024-11-15

    哈哈,線上業(yè)務(wù)穩(wěn)定優(yōu)先,有時間會考慮升級新版本

??