是否有一个 wsgi 网络服务器可以进行渐进式传输编码:分块?IE 它应该在从应用程序接收到内容时将内容写入套接字。
我用 wsgiref、waitress 和 gunicorn 尝试了以下应用程序。他们都没有'First bit of content'
马上写..
import time
def app(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/plain')])
def content():
yield 'First bit of content\n'
time.sleep(5)
yield 'Second bit of content'
return content()