1. 程式人生 > >RabbitMQ 學習筆記

RabbitMQ 學習筆記

top 技術 active TE image AS bsp In line

  • 啟用後臺的教程地址:http://www.rabbitmq.com/management.html
  • Connections are meant to be long-lived。
  • Channels are also meant to be long-lived but since many recoverable protocol errors will result in channel closure。
  • 工作流程圖

技術分享圖片

從上圖可以看出生產者是不知道隊列的,它只是將消息發送到exchange,exchange會和queue進行綁定

  • exchange有多種類型,分別為:direct,fanout,topic等。
    • direct:根據routekey直接發送
    • fanout:向所有exchange知道的queue發送
    • topic:根據主題發送

RabbitMQ 學習筆記