-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Mastering RabbitMQ
By :

In this section, we'll cover the various knobs, settings, and API surface area that Pika exposes to you. The programmer Pika is a python implementation of the AMQP 0-9-1 protocol that tries to stay fairly independent of the underlying network support library. Pika doesn't require threads. It takes care of to forbidding them either. The same goes for greenlets, callbacks, continuations, and generators. Pika is available for download via PyPI and can be installed using easy_install
or pip
:
pip install pika
You can also use this:
easy_installpika
There are two ways to set up a connection with Pika. One is to explicitly specify the kind of options you want and expect RabbitMQ to respect as part of a ConnectionParameters
object, and the other is by specifying a URL that lines out all of the various parameters that you'd like.
Specifying a connection option through a unified URL is a lot more useful these days, as most PaaS platforms, such as Heroku and their...
Change the font size
Change margin width
Change background colour