CloudAMQP have decided to remove some of the cloud providers from our offering.
PWS (Pivotal Web Service) is closing its doors, but users will still be able to keep their CloudAMQP instances!
A client may accidentally or maliciously route messages using non-existent routing keys. To avoid complications from lost information, collecting unroutable messages in a RabbitMQ alternate exchange is an easy, safe backup.
This tutorial shows you how to connect to RabbitMQ in node.js. All code is present on Github.
This tutorial shows you how to connect to RabbitMQ in PHP. All code is present on Github.
This tutorial shows you how to connect to RabbitMQ in Ruby. All code is present on Github.
This tutorial shows you how to connect to RabbitMQ in Python. All code is present on Github.
RabbitMQ provides a way to segregate applications using the same RabbitMQ instance, though vhosts.
The RabbitMQ prefetch value is used to specify how many messages are being sent at the same time. Understanding how to optimize the RabbitMQ prefetch count maximizes the speed of the system.
RabbitMQ offers two ways to receive messages which are the polling-based basic.get and the push-based basic.consume. How to decide between using a consumer or a get request depends on the workload that each creates.