rabbitMQ模式介绍一(生产-消费者)

Posted stitchsun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rabbitMQ模式介绍一(生产-消费者)相关的知识,希望对你有一定的参考价值。

1 模式介绍

生产者-消费者模式是最简单的使用模式。

一个生产者P,给队列发送消息,一个消费者C来取队列的消息。

这里的队列长度不限,生产者和消费者都不用考虑队列的长度。

队列的模型图:

技术分享图片

2 示例代码

生产者

技术分享图片
 1 #!/usr/bin/env python
 2 import pika
 3 
 4 parameters = pika.ConnectionParameters(localhost)
 5 connection = pika.BlockingConnection(parameters)
 6 channel = connection.channel()
 7 
 8 channel.queue_declare(queue=hello)
 9 number = 0
10 while number < 5:
11     channel.basic_publish(exchange=‘‘, routing_key=hello, body="hello world: {}".format(number))
12     print(" [x] Sent {}".format(number))
13     number += 1
14 
15 connection.close()
View Code

 

消费者

技术分享图片
 1 #!/usr/bin/env python
 2 import pika
 3 import datetime
 4 
 5 parameters = pika.ConnectionParameters(localhost)
 6 connection = pika.BlockingConnection(parameters)
 7 channel = connection.channel()
 8 
 9 channel.queue_declare(queue=hello)
10 
11 
12 def callback(ch, method, properties, body):  # 定义一个回调函数,用来接收生产者发送的消息
13     print("{} [消费者] recv {}".format(datetime.datetime.now(), body))
14 
15 
16 channel.basic_consume(callback, queue=hello, no_ack=True)
17 print({} [消费者] waiting for msg ..format(datetime.datetime.now()))
18 channel.start_consuming()  # 开始循环取消息
View Code

 

执行输出

生产者输出:

[x] Sent 0
 [x] Sent 1
 [x] Sent 2
 [x] Sent 3
 [x] Sent 4

 

消费者输出:

2018-07-06 16:10:05.308371 [消费者] waiting for msg .
2018-07-06 16:10:10.028588 [消费者] recv bhello world: 0
2018-07-06 16:10:10.028588 [消费者] recv bhello world: 1
2018-07-06 16:10:10.028588 [消费者] recv bhello world: 2
2018-07-06 16:10:10.028588 [消费者] recv bhello world: 3
2018-07-06 16:10:10.028588 [消费者] recv bhello world: 4

 

3 队列信息

在web管理页面上查看,点击queues,可以看到:hello队列

技术分享图片

 

 

以上是关于rabbitMQ模式介绍一(生产-消费者)的主要内容,如果未能解决你的问题,请参考以下文章

(十四)笔记.net学习之RabbitMQ工作模式

python使用rabbitMQ介绍三(发布订阅模式)

RabbitMQ3work模式

rabbitmq的简单介绍

RabbitMQ4三种Exchange模式——订阅路由通配符模式

RabbitMQ/JAVA (发布/订阅模式)