我喜欢wsgi代码的简单性。
def application(environ, start_response):
start_response('200 OK', [('Content-type', 'text/plain')])
return 'Hello, world'
它在子python解释器上处理多个进程,线程的多个请求。
但它似乎只处理HTTP(S)请求。
如何在WSGI服务器上编写非HTTP基于文本的协议处理程序脚本?
提前致谢。
(我不想使用Twisted,Concurrence)