我正在使用 pika 库使用 rabbitmctl。我使用下面的代码来创建一个 Producer
#!/usr/bin/env python
import pika
import time
import json
import datetime
connection = pika.BlockingConnection(pika.ConnectionParameters(
host='localhost'))
channel = connection.channel()
channel.queue_declare(queue='hello')
def callback(ch, method, properties, body):
#print " current time: %s " % (str(int((time.time())*1000)))
print body
channel.basic_consume(callback,
queue='hello',
no_ack=True)
channel.start_consuming()
由于我每次都创建一个现有队列(如果未创建队列,则覆盖创建队列)队列已因此而损坏。现在我想删除队列..我该怎么做?