From d2acdd43f064ed722e5b2ea6cb615abc6ca89c45 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 7 Feb 2024 09:44:32 +0000 Subject: [PATCH] Nod to Wagtail RFC https://github.com/wagtail/rfcs/pull/72 --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 065e783..58db574 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ For discussions, check out the [associated PR](https://github.com/RealOrangeOne/ ## Abstract +This proposal started life as [RFC 72 for Wagtail](https://github.com/wagtail/rfcs/pull/72), but has been adapted to be generic to Django. + Django currently doesn't have a first-party solution for long-running tasks. Other frameworks such as Laravel have background workers, allowing them to push tasks into the background to be processed at a later date, without requiring the end user to wait for them to occur. One of the key goals behind this proposal is removing the requirement for the user to wait for tasks they don't need to, moving computation and complexity out of the request-response cycle, towards dedicated background worker processes.