Basics of RabbitMQ Broker

Written by onlinetutorials | Published 2020/05/20
Tech Story Tags: rabbitmq | message-queue | exchange | programming | technology | amqp | open-source | java

TLDR The Advanced Message Queuing Protocol (AMQP) is an open standard application layer protocol for message-oriented application. RabbitMQ is internally built on Erlang which is used for internal memory management of RabbitMQ. It is one of the easiest way of transmitting data between different programming languages (Example C# front-end can interact with Java application.) It is also a way of sending data between programming languages. It's an open-source messaging broker and it is really open source. It's also an easy way of communicating between different languages.via the TL;DR App

Introduction to RabbitMQ

What is RabbitMQ?
RabbitMQ is an Advanced Message Queuing Protocol(AMQP) and it is one of the most popular cross-platform messaging broker and it is really open source.
RabbitMQ is also one of the easiest way of transmitting data between different programming languages (Example C# front-end can interact with Java application.)
The RabbitMQ is internally built on Erlang which is used for internal memory management of RabbitMQ.

What is AMQP?

The Advanced Message Queuing Protocol (AMQP) is an open standard application layer protocol for message-oriented application.
Some Defined Features of AMQP:
Message orientationQueuingRouting (including point-to-point and publish-and-subscribe) Reliability and security

Learn More in Detail:

Written by onlinetutorials | Passionate about coding, so started writing my thoughts in technical terms
Published by HackerNoon on 2020/05/20