Daily Archives: May 14, 2018

RabbitMQ的深入理解和最简单的用途说明

https://blog.csdn.net/phker/article/details/71211895 如何在新的系统中使用RabbitMQ. 系统设计的两个重大问题. 第一条要满足未来的业务需求的不断变化和增加.... Read More | Share it now!

RabbitMQ三种Exchange模式(fanout,direct,topic)的性能比较

http://www.cnblogs.com/zlfoak/p/5521673.html RabbitMQ中,所有生产者提交的消息都由Exchange来接受,然后Exchange按照特定的策略转发到Queue进行存储 RabbitMQ提供了四种Exchange:fanout,direct,topic,header header模式在实际使用中较少,本文只对前三种模式进行比较。   性能排序:fanout... Read More | Share it now!