
How to install RabbitMQ
This article is a sequence of my previous RabbitMQ article: Unraveling RabbitMQ: How to Scale Systems with Queues . Check it out to deep dive into the concepts! RabbitMQ is an open-source message broker that acts as the intermediary between independent and heterogeneous applications, providing systems a common way to communicate. Commonly used in Microservices Architecture, it is a software where queues are defined, to which applications connect in order to transfer messages. The queue-manager software stores the messages until a receiving application connects and takes a message off the queue. RabbitMQ uses an implementation of Advanced Message Queuing Protocol - AMQP, which supports advanced features such as clustering and complex message routing. What is AMQP? AMQP (Advanced Message Queuing Protocol) is a powerful, open-standard application layer protocol for message-oriented middleware. It basically defines how a system can exchange messages. Its main purpose is to provide a standa
Continue reading on Dev.to
Opens in a new tab



