Introduction To RabbitMQ
Overview In the micro-service world, we often heard about Event Driven Architecture (EDA) which uses events to communicate between services. A publisher publishes events without caring who will consume the events, this async communication (background operations) makes it decoupled between components. Reducing latency is one of its benefits. There are some famous tools that implement Event Driven Architecture, ie: Kafka, NSQ, Amazon SQS, GCP Pub Sub, RabbitMQ, and soon. In this article, I want to talk a bit about RabbitMQ….