uwsgi документация:
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return [b"Hello World"]
Возможно ли послать http ответ(закрыть http соединение) и продолжить выполнение скрипта(без использования потоков/очередей/внешних сервисов и тд)? Типа этого:
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
end_response(b"Hello World")
#HTTP connection is closed
#continue execution..