© 2023 Hashnode
#rabbitmq
Introduction In recent years, Microservices architecture has gained huge popularity in the software industry due to its ability to develop complex applications that are scalable, maintainable, and eas…
To write unit tests for a C# application that uses RabbitMQ, you will need to use a testing framework such as NUnit or xUnit. Here are some steps to help you get started: Install the necessary NuGet packages: You will need to install the R…
In this article, we will see how two microservices developed using Spring Boot will asynchronously communicate with each other using Rabbit MQ What are we going to build? Use Case: We will build a user service that creates new users and st…
Introduction Many articles talk about the benefits of using AWS SQS, and rightly so because AWS SQS is a great service! It's a highly reliable and scalable messaging service that's used by many organi…
MassTransit is a powerful message-based communication library for building distributed applications using the .NET framework. It provides a simple and flexible way to send and receive messages between…
Introduction RabbitMQ is a popular message broker that enables applications to communicate with each other through messages. It is open-source and supports multiple messaging protocols, making it a ve…
Building applications in form of Microservices, is the way companies are now developing applications that scale, keeping each functional module as a separate service. All these services come together to form a whole system. The notification…
What is RabbitMQ and why is it relevant? RabbitMQ is a tool that helps computers talk to each other. Imagine that you want to send a message to your friend across the street. You could yell the messag…
In this post, we'll go through how to process RabbitMQ messages in an asynchronous way and save them in MongoDB with an asynchronous connection. Real Case Scenario We have to build a distributed servi…
To install RabbitMQ using Docker, you will need to have Docker installed on your system. Once you have Docker installed, you can pull the RabbitMQ Docker image by running the following command: docker pull rabbitmq:3-management This will d…