Skip to content

Commit a328c35

Browse files
RealOrangeOnenessita
authored andcommitted
Refs #35859 -- Mentioned django-tasks and external resources on docs/topics/tasks.txt.
1 parent 4b6c998 commit a328c35

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

docs/topics/tasks.txt

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Django's Tasks framework
44

55
.. versionadded:: 6.0
66

7+
For older Django versions, the :pypi:`django-tasks` backport is available.
8+
79
For a web application, there's often more than just turning HTTP requests into
810
HTTP responses. For some functionality, it may be beneficial to run code
911
outside the request-response cycle.
@@ -113,8 +115,13 @@ Third-party backends
113115

114116
As mentioned at the beginning of this section, Django includes backends
115117
suitable for development and testing only. Production systems should rely on
116-
backends that supply a worker process and durable queue implementation. To use
117-
an external Task backend with Django, use the Python import path as the
118+
backends that supply a worker process and a durable queue implementation.
119+
Available third-party backends are listed on the `Community Ecosystem page
120+
<https://www.djangoproject.com/community/ecosystem/#tasks>`__ and the `Tasks
121+
framework grid from Django Packages
122+
<https://djangopackages.org/grids/g/task-framework/>`__.
123+
124+
To use an external Task backend with Django, use the Python import path as the
118125
:setting:`BACKEND <TASKS-BACKEND>` of the :setting:`TASKS` setting, like so::
119126

120127
TASKS = {

0 commit comments

Comments
 (0)