I'm using falcon as my web server back-end, and wrap it with uwsgi, very much similar to this example. I want to offload a task, like uwsgi allows. I want a POST request to produce a 202, and to start a thread that takes care of the request.
In uwsgi it's done with offload-threads = X
. Does anyone know how to achieve this with falcon?