123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .. _broker-django:
- ===========================
- Using the Django Database
- ===========================
- .. _broker-django-installation:
- Installation
- ============
- .. _broker-django-configuration:
- Configuration
- =============
- The database transport uses the Django `DATABASE_*` settings for database
- configuration values.
- #. Set your broker transport::
- BROKER_URL = "django://"
- #. Add :mod:`djcelery.transport` to `INSTALLED_APPS`::
- INSTALLED_APPS = ("djcelery.transport", )
- #. Sync your database schema::
- $ python manage.py syncdb
- .. _broker-django-limitations:
- Limitations
- ===========
- The Django database transport does not currently support:
- * Remote control commands (celeryev, broadcast)
- * Events, including the Django Admin monitor.
- * Using more than a few workers (can lead to messages being executed
- multiple times).
|