Click here to Skip to main content
15,882,114 members
Everything / RabbitMQ

RabbitMQ

RabbitMQ

Great Reads

by Programming Tutorials by Tests4Geeks
In this tutorial, we are going to have an introduction to basic concepts of Celery with RabbitMQ and then set up Celery for a small demo project.
by Mack Ait-Aoudia
A walk-through on how to build a notification engine by integrating applications
by ISMAIL CAGDAS
How to use MassTransit with RabbitMQ in ASP.NET Boilerplate Framework
by zidane168
Example of how to use CakePHP with RabbitMQ

Latest Articles

by zidane168
Example of how to use CakePHP with RabbitMQ
by ISMAIL CAGDAS
How to use MassTransit with RabbitMQ in ASP.NET Boilerplate Framework
by John-ph
A simple way to design queue based messaging solution in .NET Core to solve complex problems
by Programming Tutorials by Tests4Geeks
In this tutorial, we are going to have an introduction to basic concepts of Celery with RabbitMQ and then set up Celery for a small demo project.

All Articles

Sort by Score

RabbitMQ 

9 Jan 2018 by Programming Tutorials by Tests4Geeks
In this tutorial, we are going to have an introduction to basic concepts of Celery with RabbitMQ and then set up Celery for a small demo project.
24 Oct 2017 by Mack Ait-Aoudia
A walk-through on how to build a notification engine by integrating applications
19 Jan 2023 by ISMAIL CAGDAS
How to use MassTransit with RabbitMQ in ASP.NET Boilerplate Framework
18 Jul 2016 by Ala Chaabouni
I am using the firehose tracer in RabbitMQ.For this example, I have a queue called Calculator bound to a headers exchange.To read the logs using a Java client, I am using the HTTP API to read the log files using this code :URL url = new...
14 Mar 2017 by gxwang
Hi everyone, I'm trying to learn rabbitmq with the tutoria(RabbitMQ - RabbitMQ tutorial - "Hello World!"[^]). When I want to extract the receieve code block to a function as NewMethod, and use the NewMethod in Main method. I cannot receive the message in the queue. Anyone can help, thanks a lot....
14 Mar 2017 by Richard MacCutchan
See RabbitMQ - RabbitMQ Community[^].
26 Jul 2017 by @BangIndia
Hi, I have declared a queue with following parametrs. channel.exchangeDeclare(EXCHANGE_NAME, ExchangeType.DIRECT.getExchangeName(), true); Map args = new HashMap(); args.put("x-queue-mode", "lazy"); // First Queue channel.queueDeclare(QUEUE_NAME_1, false,...
26 Jul 2017 by @BangIndia
As per the code the queue was made as exclusive queue, so you need to use the same connection to consumer. You need to use the Durable queue for this .
16 Jun 2020 by 1suli0
Hello everyone. I've stumbled on a problem with no idea how to solve it, or even what could be underlying cause. I'm running RabbitMQ server v3.8.3 and I wanted to expose its metrics to Prometheus so I enabled the plugin. On the other instance...
22 Dec 2020 by akash5995
I'm using the RabbitMq module under metricbeat to index my topics and queues to Elasticsearch. The rabbitmq queue metricset defines a few indexes such as: rabbitmq.queue.name, rabbitmq.queue.messages.total.count and so on, Is there a way to...
27 Jun 2022 by OriginalGriff
Talk to the creators, or the community of users - they will know a lot more than a generic development site like this one: Messaging that just works — RabbitMQ[^]
4 Aug 2023 by zidane168
Example of how to use CakePHP with RabbitMQ
8 Oct 2015 by Sacha Barber
Getting .NET code to talk to Scala code and vice versa using RabbitMQ
22 Nov 2019 by John-ph
A simple way to design queue based messaging solution in .NET Core to solve complex problems
19 May 2016 by Han Bo Sun
This article will give an introduction on how to create microservices using Spring AMQP and RabbitMQ.
30 Dec 2016 by Mayur S Joshi
This article provides the step-by-step points on customising manual installation of RabbitMQ on Windows.
22 May 2016 by KarstenK
Her are some lines of code as principle solution:while( !isQueueEmpty() ) { Msg *msg = getMessage(); if( msg->send() == OK ) { RemoveMsgFromQueue(msg); }};I hope you get it ;-) (that the answer is at the same level as your question)tip: But it makes no sense to...
22 May 2016 by Dzianis Igaravich Leanenka
Hello to everyone!I have to implement a so called message queue program based on REST WITHOUT using any extra libraries or ready implementations as RabbitMQ , MSMQ and so on (but should be similar).I just need a few comments and lines of code (C# , C++ , Java) to realize how it should work....
26 Apr 2023 by Aimée Marnelle Mbenguet
Hi, I'm Marnelle, I have a problem with the configuration of a rabbitmq docker on my asp.net core project and I would like to get help from you. being new in the field I try to configure rabbitmq on a solution, after research I learned that I...
27 Jun 2022 by Kavya Bhargava
I have followed all the steps of downloading rabbitmq on m1pro mac. After that, I tried running it with command : CONF_ENV_FILE="/opt/homebrew/etc/rabbitmq/rabbitmq-env.conf" /opt/homebrew/opt/rabbitmq/sbin/rabbitmq-server BUT i got this error:...