您好,登錄后才能下訂單哦!
給接收端添加:
channel.basic_qos(prefetch_count=1) ##一次處理一個,處理完再接受新消息
發送端:
import pika connection = pika.BlockingConnection(pika.ConnectionParameters('localhost')) channel = connection.channel() channel.queue_declare(queue='hello',durable=True) ##隊列持久化,隊列重啟后也存在,不保證數據是否存在 # channel.queue_delete(queue="task_queue") for i in range(100): channel.basic_publish(exchange='', routing_key='hello', body=str(i), properties=pika.BasicProperties(delivery_mode=2) ##數據持久化 ) # print("Sent 'hello world!'") connection.close()
接收端:
#!/usr/bin/env python import pika import time connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost')) channel = connection.channel() channel.queue_declare(queue='hello',durable=True) # channel.queue_bind(queue='hello',exchange='',routing_key='hello') def callback(ch, method, properties, body): # print("aaa") print(" [x] Received %r" % body) time.sleep(1) ch.basic_ack(delivery_tag=method.delivery_tag) # 給rabbitmq返回已拿到數據信號。 channel.basic_qos(prefetch_count=1) ##一次處理一個,處理完再接受新消息 channel.basic_consume(callback, queue='hello', no_ack=False) print(' [*] Waiting for messages. To exit press CTRL+C') channel.start_consuming()
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。