MassTransit 不支持topic分类

来源:互联网 发布:日本军工 知乎 编辑:程序博客网 时间:2024/06/01 09:32

refs:

https://stackoverflow.com/questions/30147212/publish-message-using-exchange-and-routing-key-using-masstransit


mass transit基于类型分发,不内建hash表维护topic





The routing key approach is less efficient with RabbitMQ, which prefers to use the exchange fabric for message routing simplicity (no hash tables to maintain).

Instead of dealing with exchanges and routing keys, just define your command and/or event types, and the send or publish those messages and let the consumers do their work.


The routing key approach is less efficient with RabbitMQ, which prefers to use the exchange fabric for message routing simplicity (no hash tables to maintain).

Instead of dealing with exchanges and routing keys, just define your command and/or event types, and the send or publish those messages and let the consumers do their work.

原创粉丝点击