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

溫馨提示×

溫馨提示×

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

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

python rabbitmq 隊列持久化

發布時間:2020-08-01 17:23:27 來源:網絡 閱讀:963 作者:w411639146 欄目:建站服務器

發送端:

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="hello world",
                      properties=pika.BasicProperties(delivery_mode=2) ##數據持久化
                      )
# print("Sent 'hello world!'")
connection.close()


接收端:

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")
    # time.sleep(8)
    print(" [x] Received %r" % body)
    ch.basic_ack(delivery_tag=method.delivery_tag)  # 給rabbitmq返回已拿到數據信號。


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

开江县| 淮安市| 张掖市| 武清区| 四会市| 馆陶县| 阳新县| 万安县| 井研县| 海伦市| 清涧县| 钟祥市| 化德县| 高陵县| 松原市| 区。| 武冈市| 兴安盟| 开江县| 平陆县| 双流县| 朝阳市| 新兴县| 泽库县| 新和县| 杭锦后旗| 上犹县| 建始县| 沅江市| 利津县| 文成县| 舞阳县| 苏州市| 收藏| 思茅市| 怀化市| 安乡县| 甘南县| 新平| 达州市| 闵行区|