Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What language was RabbitMQ written in?

Tags:

rabbitmq

I'm looking at the repos and there are so many projects, not sure which are wrappers/clients and which is the actual project.

Is it Erlang?

like image 979
Blankman Avatar asked Mar 19 '11 16:03

Blankman


People also ask

What language is RabbitMQ written?

Written in Erlang, the RabbitMQ server is built on the Open Telecom Platform framework for clustering and failover. Client libraries to interface with the broker are available for all major programming languages.

Is RabbitMQ Java based?

The RabbitMQ Java client library allows Java and JVM-based applications to connect to and interact with RabbitMQ nodes. 5. x release series of this library require JDK 8, both for compilation and at runtime. On Android, this means only Android 7.0 or later versions are supported.

What is RabbitMQ Python?

RabbitMQ is an open source message broker software. It accepts messages from producers, and delivers them to consumers. It acts like a middleman which can be used to reduce loads and delivery times taken by web application servers. Robust messaging for building applications in a distributed manner. Easy to use.

What is RabbitMQ programming?

RabbitMQ is the most widely deployed open source message broker. With tens of thousands of users, RabbitMQ is one of the most popular open source message brokers. From T-Mobile to Runtastic, RabbitMQ is used worldwide at small startups and large enterprises.


1 Answers

Yes, it is Erlang. You can check this out by downloading the source for the server here:

http://www.rabbitmq.com/releases/rabbitmq-server/v2.3.1/

like image 176
xeeton Avatar answered Oct 18 '22 20:10

xeeton