paint-brush
Basics of RabbitMQ Brokerby@onlinetutorials
332 reads
332 reads

Basics of RabbitMQ Broker

by onlinetutorialsMay 20th, 2020
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

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.
featured image - Basics of RabbitMQ Broker
onlinetutorials HackerNoon profile picture

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: