中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python rabbitmq 消費端根據能力輪詢接受

發布時間:2020-07-25 16:25:44 來源:網絡 閱讀:861 作者:w411639146 欄目:建站服務器

給接收端添加:

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()


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

敖汉旗| 周至县| 隆化县| 黄陵县| 南木林县| 凤山县| 波密县| 鹤峰县| 理塘县| 玛沁县| 随州市| 阜阳市| 张北县| 平安县| 饶河县| 吉木萨尔县| 襄垣县| 揭西县| 长白| 闽侯县| 都匀市| 西乌珠穆沁旗| 海盐县| 百色市| 千阳县| 平定县| 杭锦后旗| 辉县市| 筠连县| 永福县| 名山县| 昂仁县| 万源市| 耒阳市| 理塘县| 县级市| 延川县| 吉安县| 阳原县| 双桥区| 沧源|