gpt4 book ai didi

python - Azure 中与 Aws SqS 最相似的队列服务是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 04:10:46 25 4
gpt4 key购买 nike

我正在使用 AWS SqS,作为迁移到 Azure 的一部分,我正在测试 Azure 测试 Azure 队列 https://learn.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 编写的,那么什么是最相似的?

最佳答案

有很多可用的替代方案,我建议您使用Service bus queue .

from azure.servicebus import QueueClient, Message

创建QueueClient

queue_client = QueueClient.from_connection_string("<CONNECTION STRING>", "<QUEUE NAME>")

向队列发送测试消息

msg = Message(b'Test Message')
queue_client.send(msg)

这里是有关如何开始使用 python 的文档

关于python - Azure 中与 Aws SqS 最相似的队列服务是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56315671/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com