Any #Django users out there who use the tasks framework? If so, what are you using to process the submitted tasks?
Coming from not-Python, it’s unexpected for me to see a publish-only framework for asynchronous tasks. In Java with simple tasks, I’d have spun up a thread pool to consume the task queue in the same process that handles API requests. But that doesn’t feel very Django-ish. At the same time, the Django task framework docs are very hands off with recommendations beyond “don’t use the built-ins (immediate and dummy) for production.”