File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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+
79For a web application, there's often more than just turning HTTP requests into
810HTTP responses. For some functionality, it may be beneficial to run code
911outside the request-response cycle.
@@ -113,8 +115,13 @@ Third-party backends
113115
114116As mentioned at the beginning of this section, Django includes backends
115117suitable 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 = {
You can’t perform that action at this time.
0 commit comments