php如何用libevent处理rabbitmq发来的消息,防止消息丢失或者人为的中断导致消息没有被处理完整
之前是用官方提供的方法来处理的
``
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论