RabbitMQ是一个开源的消息代理和队列服务器,用来通过推送消息来处理应用程序之间的通信。以下是一些使用RabbitMQ的常见代码示例:
- 生产者发送消息:
Python代码:
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
channel.queue_declare(queue='hello')
channel.basic_publish(exchange='',
routing_key='hello',
body='Hello World!')
print(" [x] Sent 'Hello World!'")
connection.close()
在这个例子中,我们首先导入pika库,然后创建一个到RabbitMQ服务器的连接。然后,我们声明一个队列,在这个例子中,我们声明了一个名为'hello'的队列。最后,我们发布一条消息到这个队列。
- 消费者接收并处理消息:
Python代码:
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
channel.queue_declare(queue='hello')
def callback(ch, method, properties, body):
print(" [x] Received %r" % body)
channel.basic_consume(queue='hello', on_message_callback=callback, auto_ack=True)
print(' [*] Waiting for messages. To exit press CTRL+C')
channel.start_consuming()
在这个例子中,我们首先声明队列,然后定义一个回调函数,当接收到消息时会调用这个函数。最后,我们开始从队列中消费消息。
- 消息的确认与回退:
在默认情况下,RabbitMQ会在消息从队列中移除之前发送给消费者。但是,如果消费者在处理消息的过程中崩溃或者由于其他原因无法处理完成,那么这条消息就会丢失。为了防止这种情况,我们可以开启消息的确认模式。
Python代码:
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
channel.queue_declare(queue='hello', durable=True)
def callback(ch, method, properties, body):
print(" [x] Received %r" % body)
# acknowledgment
ch.basic_ack(delivery_tag=method.delivery_tag)
channel.basic_consume(queue='hello', on_message_callback=callback, auto_ack=False)
print(' [*] Waiting for messages. To exit press CTRL+C')
channel.start_consuming()
在这个例子中,我们在回调函数中调用了ch.basic_ack(delivery_tag=method.delivery_tag)
来确认消息的接收。如果消费者崩溃,未确认的消息会被RabbitMQ重新发送。
- 消息的持久化:
如果RabbitMQ服务器宕机,那么队列和队列中的消息都会丢失。为了防止这种情况,我们可以将队列和消息都设置为持久化。
Python代码:
channel.queue_declare(queue='hello', durable=True)
channel.basic_publish(exchange='',
routing_key='hello',
body='Hello World!',
properties=pika.BasicProperties(
delivery_mode=2, # make message persistent
))
在这个例子中,我们在声明队列时将其设置为持久化,并在发布消息时设