php如何用libevent处理rabbitmq发来的消息,防止消息丢失或者人为的中断导致消息没有被处理完整

发布于 2022-09-06 06:12:27 字数 1315 浏览 13 评论 0

之前是用官方提供的方法来处理的

``
$channel->basic_consume('hello', '', false, true, false, false, $callback);

while(count($channel->callbacks)) {

$channel->wait();

}
``

发现中断程序的时候 每个消息没有被完全处理完,比如拿到消息还没有处理完入库就被中断了。

后来打算用libevent 据说在事件处理中,除非强制kill掉,不然事件会处理完再中断,但是以下代码还是不断报错;

``
$this->connection = new AMQPStreamConnection($config['host'], $config['port'], $config['user'], $config['password'], $config['vhost']);

        $this->channel = $this->connection->channel();;
        $this->channel->queue_declare($queue, false, true, false, false);

// $this->channel->basic_consume($queue, '', false, true, false, false, function ($msg) {
// set_trace_prefix(md5($msg->body . time()));
// trace('receive msg:' . $msg->body);
// trace('done');
// });

        $ch = $this->channel;
        $fd = $this->connection->getSocket();
        Worker::$globalEvent->add($fd, EventInterface::EV_READ, function ($fd) use ($queue, $ch){
            $msg = $ch->basic_get($queue, true);
            print_r($msg);
            print("get a messge:\n");

        });
        ``

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文