Playing with RabbitMQ Federation —
Hallo!!! I recently read about RabbitMQ Federation and wanted to experiment with its features to see if it could facilitate the migration of RabbitMQ clients across different clusters with near-zero downtime and no message loss.…
Feb 22, 2024
Understanding the Nuances of new() and make() in Go —
Go has couple of memory allocation primitives: new() and make().
new(T) new(T) is allocation primitive which allocates the memory for type T but zeros it.…
Feb 21, 2024
Problems With Mirrored Queues —
Let’s talk about classic mirrored queues in Rabbitmq.
To start with, what is even a Queue ? A queue is an ordered collection of messages.…