我需要花几个小时来了解Azure Service Bus架构.我特别想知道这种排队技术是否可用于支持消息路由 – 类似于RabbitMQ的路由功能.
http://www.rabbitmq.com/tutorials/tutorial-four-python.html
原文链接:https://www.f2er.com/windows/365248.htmlhttp://www.rabbitmq.com/tutorials/tutorial-four-python.html
We will use a direct exchange instead. The routing algorithm behind a
direct exchange is simple – a message goes to the queues whose binding
key exactly matches the routing key of the message.In this setup,we can see the direct exchange X with two queues bound
to it. The first queue is bound with binding key orange,and the
second has two bindings,one with binding key black and the other one
with green.In such a setup a message published to the exchange with a routing key
orange will be routed to queue Q1. Messages with a routing key of
black or green will go to Q2. All other messages will be discarded.
寻找对服务总线架构有深刻理解的人,以推荐实现此类队列的最佳向量.