91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

叶城县| 婺源县| 定结县| 栖霞市| 滨州市| 江山市| 潞城市| 临桂县| 扎兰屯市| 达拉特旗| 从化市| 徐水县| 临沂市| 原平市| 威海市| 新乡县| 岳池县| 织金县| 酉阳| 遂昌县| 四会市| 彭阳县| 黑山县| 望都县| 和静县| 布拖县| 抚州市| 淮南市| 宜兰县| 钦州市| 方山县| 绵阳市| 邹城市| 平潭县| 台东市| 玉环县| 靖西县| 宜川县| 邢台县| 武平县| 龙川县|