我正在使用AWS SqS,并且作为向Azure迁移的一部分,我正在测试Azure测试Azure队列https://docs.microsoft.com/en-us/azure/storage/queues/storage-python-how-to-use-queue-storage以及Rabbitmq https://www.rabbitmq.com/tutorials/tutorial-one-python.html。该应用程序是在python中,所以最相似的是什么?
答案 0 :(得分:1)
有很多可用的替代方法,我建议您使用Service bus queue
。
from azure.servicebus import QueueClient, Message
queue_client = QueueClient.from_connection_string("<CONNECTION STRING>", "<QUEUE NAME>")
msg = Message(b'Test Message')
queue_client.send(msg)
以下是有关 python 入门的文档。