diff options
| author | Jake Howard <git@theorangeone.net> | 2026-02-19 21:48:23 +0000 |
|---|---|---|
| committer | Natalia <124304+nessita@users.noreply.github.com> | 2026-03-03 20:02:40 -0300 |
| commit | 085bbdcb1249f2830cd505da74a8c8b9c148af9a (patch) | |
| tree | 8e911c28e0c334daffb823b27f0e252196330ef2 | |
| parent | 868012c9619b7ff5f08eb32d9e8e9c9a852fd9f8 (diff) | |
[6.0.x] Refs #35859 -- Mentioned django-tasks and external resources on docs/topics/tasks.txt.
Backport of a328c355d9625ecdc8f16b249daebba3c0ac2882 from main.
| -rw-r--r-- | docs/topics/tasks.txt | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/docs/topics/tasks.txt b/docs/topics/tasks.txt index 06e83af0bc..d3bc54f6b4 100644 --- a/docs/topics/tasks.txt +++ b/docs/topics/tasks.txt @@ -4,6 +4,8 @@ Django's Tasks framework .. versionadded:: 6.0 + For older Django versions, the :pypi:`django-tasks` backport is available. + For a web application, there's often more than just turning HTTP requests into HTTP responses. For some functionality, it may be beneficial to run code outside the request-response cycle. @@ -113,8 +115,13 @@ Third-party backends As mentioned at the beginning of this section, Django includes backends suitable for development and testing only. Production systems should rely on -backends that supply a worker process and durable queue implementation. To use -an external Task backend with Django, use the Python import path as the +backends that supply a worker process and a durable queue implementation. +Available third-party backends are listed on the `Community Ecosystem page +<https://www.djangoproject.com/community/ecosystem/#tasks>`__ and the `Tasks +framework grid from Django Packages +<https://djangopackages.org/grids/g/task-framework/>`__. + +To use an external Task backend with Django, use the Python import path as the :setting:`BACKEND <TASKS-BACKEND>` of the :setting:`TASKS` setting, like so:: TASKS = { |
