zoukankan      html  css  js  c++  java
  • Python-RabbitMQ-topic(细致消息过滤的广播模式)

    生产者:topic_publiser.py

    import pika,sys
    
    connection = pika.BlockingConnection(pika.ConnectionParameters("localhost"))
    
    channel = connection.channel()
    
    channel.exchange_declare(exchange='topic_logs',
                             exchange_type='topic')
    
    routing_key = sys.argv[1] if len(sys.argv) > 1 else 'anonymous.info' #级别
    message = ' '.join(sys.argv[2:]) or 'Hello World!'#消息
    
    channel.basic_publish(exchange='topic_logs',
                          routing_key=routing_key,
                          body=message)
    print(' [x] Sent %r:%r' % (routing_key, message))
    
    connection.close()
    

    消费者:topic_consumer.py

    import pika,sys
    
    connection = pika.BlockingConnection(pika.ConnectionParameters("localhost"))
    
    channel = connection.channel()
    
    channel.exchange_declare(exchange='topic_logs',
                             exchange_type='topic')
    
    result = channel.queue_declare(exclusive=True)
    queue_name = result.method.queue#获取queue名字
    
    
    bindding_keys = sys.argv[1:]
    if not bindding_keys:
        sys.stderr.write("Usage: %s [info] [warning] [error]
    " % sys.argv[0])
        sys.exit(1)
    
    for bindding_key in bindding_keys:
        channel.queue_bind(exchange='topic_logs',
                           queue=queue_name,
                           routing_key=bindding_key)
    
    print(' [*] Waiting for logs. To exit  press CTRL +C')
    
    def callback(ch, method, properties,body):
        print("[x] %r:%r" % (method.routing_key, body))
    
    channel.basic_consume(callback,
                          queue=queue_name,
                          no_ack=True)
    
    
    channel.start_consuming()
    
  • 相关阅读:
    Django Rest framework基础使用之Request/Response
    Django Rest framework基础使用之 serializer
    python基础(一)
    python实现本地图片上传到服务区
    开发中遇到的问题记录
    九、xadmin菜单分组管理
    leetcode-7-整数翻转
    leetcode-6-Z 字形变换
    leetcode-5-最长回文子串
    leetcode-3-无重复字符的最长子串
  • 原文地址:https://www.cnblogs.com/fuyuteng/p/9257450.html
Copyright © 2011-2022 走看看