|
@@ -4,7 +4,7 @@
|
|
|
|
|
|
.. image:: http://cloud.github.com/downloads/ask/celery/celery_128.png
|
|
|
|
|
|
-:Version: 2.4.4
|
|
|
+:Version: 2.4.5
|
|
|
:Web: http://celeryproject.org/
|
|
|
:Download: http://pypi.python.org/pypi/celery/
|
|
|
:Source: http://github.com/ask/celery/
|
|
@@ -111,7 +111,6 @@ Features
|
|
|
+-----------------+----------------------------------------------------+
|
|
|
| Fault-tolerant | Excellent configurable error recovery when using |
|
|
|
| | `RabbitMQ`, ensures your tasks are never lost. |
|
|
|
- | | scenarios, and your tasks will never be lost. |
|
|
|
+-----------------+----------------------------------------------------+
|
|
|
| Distributed | Runs on one or more machines. Supports |
|
|
|
| | broker `clustering`_ and `HA`_ when used in |
|
|
@@ -215,11 +214,45 @@ or from source.
|
|
|
|
|
|
To install using `pip`,::
|
|
|
|
|
|
- $ pip install Celery
|
|
|
+ $ pip install -U Celery
|
|
|
|
|
|
To install using `easy_install`,::
|
|
|
|
|
|
- $ easy_install Celery
|
|
|
+ $ easy_install -U Celery
|
|
|
+
|
|
|
+Bundles
|
|
|
+-------
|
|
|
+
|
|
|
+Celery also defines a group of bundles that can be used
|
|
|
+to install Celery and the dependencies for a given feature.
|
|
|
+
|
|
|
+The following bundles are available:
|
|
|
+
|
|
|
+:`celery-with-redis`_:
|
|
|
+ for using Redis as a broker.
|
|
|
+
|
|
|
+:`celery-with-mongodb`_:
|
|
|
+ for using MongoDB as a broker.
|
|
|
+
|
|
|
+:`django-celery-with-redis`_:
|
|
|
+ for Django, and using Redis as a broker.
|
|
|
+
|
|
|
+:`django-celery-with-mongodb`_:
|
|
|
+ for Django, and using MongoDB as a broker.
|
|
|
+
|
|
|
+:`bundle-celery`_:
|
|
|
+ convenience bundle installing *Celery* and related packages.
|
|
|
+
|
|
|
+.. _`celery-with-redis`:
|
|
|
+ http://pypi.python.org/pypi/celery-with-redis/
|
|
|
+.. _`celery-with-mongodb`:
|
|
|
+ http://pypi.python.org/pypi/celery-with-mongdb/
|
|
|
+.. _`django-celery-with-redis`:
|
|
|
+ http://pypi.python.org/pypi/django-celery-with-redis/
|
|
|
+.. _`django-celery-with-mongodb`:
|
|
|
+ http://pypi.python.org/pypi/django-celery-with-mongdb/
|
|
|
+.. _`bundle-celery`:
|
|
|
+ http://pypi.python.org/pypi/bundle-celery/
|
|
|
|
|
|
.. _celery-installing-from-source:
|
|
|
|