Tutorial by Examples

A quick note before actually installing RabbitMQ: Ubuntu 14.04's Erlang packages have issues if you are using SSL with RabbitMQ, so you'll need to install a newer version than what the Ubuntu package maintainers provide, so use the binaries at https://www.erlang-solutions.com/resources/download.html...
This code create a producer which send two messages to a queue, and a consumer which receives all the messages from that queue. Code for producer.py (using the pika 0.10.0 Python client): import pika connection = pika.BlockingConnection(pika.ConnectionParameters( host='localhost')) ch...

Page 1 of 1