RabbitMQ is an open source robust messaging software for applications based on the AMQP protocol.

learn more… | top users | synonyms

4
votes
2answers
117 views

Bulk HTTP request queue consumer

Today I had to write a small tool to help me send HTTP requests in bulk. Rabbit was overloading my server, so I decided to change my consumers to buffer the contents of the request, before sending. ...
0
votes
0answers
98 views

RabbitMQ RPC client

I'm familiarising myself with RabbitMQ and Clojure, so I looked at the Get Started guide for the former and added the client and server parts for the RPC tutorial. I already got the feedback that ...
4
votes
1answer
182 views

RabbitMQ Consumer

I am playing with RabbitMQ and .NET and found myself duplicating the connection initialization logic in all of the consumers. Created the Consumer in order to ...
6
votes
2answers
672 views

Connecting to RabbitMQ

I would like a review for this connection to RabbitMQ. I just developed it and seems to be working well, but I would like another set of eyes on it before putting this on the sever. ...
10
votes
2answers
1k views

NodeJS broker between MongoDB and RabbitMQ

I wrote a small program that aims to take some data from the MongoDB database and put them in the RabbitMQ queue. I tried to use only promise style but I am a beginner in JavaScript. Could you please ...