
rabbitmq
Gekkoou
这个作者很懒,什么都没留下…
展开
-
RabbitMQ 消息队列 - direct 模式分发消息
推荐阅读 https://blog.youkuaiyun.com/column/details/15500.html direct 模式 根据 Binding 指定的 Routing Key, 将符合Key的消息发送到 Binding 的 Queue p_direct.php <?php //配置信息 $conn_args = array( 'host' => '...原创 2018-08-14 16:07:39 · 1281 阅读 · 0 评论 -
RabbitMQ 消息队列 - fanout 模式分发消息
推荐阅读 https://blog.youkuaiyun.com/column/details/15500.html fanout 模式 将同一个 message 发送到所有同该 Exchange 绑定的 queue, 不论 RoutingKey 是什么, 这条消息都会被投递到所有与此 Exchange 绑定的 queue 中 p_fanout.php <?php //配...原创 2018-08-14 16:16:03 · 815 阅读 · 0 评论 -
RabbitMQ 消息队列 - topic 模式分发消息
推荐阅读 https://blog.youkuaiyun.com/column/details/15500.html topic 模式 根据 Binding 指定的 RoutingKey, Exchange 对 key 进行模式匹配后投递到相应的 Queue, 模式匹配时符号 "#" 匹配一个或多个词, 符号 "*" 匹配正好一个词, 而且单词与单词之间必须要用 "." 符号进行分隔 ...原创 2018-08-14 16:22:57 · 1015 阅读 · 0 评论