Using IronMQ
As well as an [Iron.io account](http://www.iron.io). Sign up for free at [iron.io]().
First, you’ll need to import the iron_celery library right after you import Celery, for example:
import iron_celery
app = Celery('mytasks', broker='ironmq://', backend='ironcache://')
where the URL format is:
you must remember to include the “@” at the end.
The default cloud/region is AWS us-east-1. You can choose the IronMQ Rackspace (ORD) cloud by changing the URL to:
ironmq://project_id:token@mq-rackspace-ord.iron.io
You can store results in IronCache with the same Iron.io credentials, just set the results URL with the same syntax as the broker URL, but changing the start to ironcache:
You can find more information in the [iron_celery README](http://github.com/iron-io/iron_celery).