使用Bottle框架的Python粘贴破坏管道错误

Lun*_*ayo 5 python paste

我正在使用实现WSGI请求和响应的Bottle框架,并且由于单线程问题,我将服务器更改为PythonWSGIServer并使用Apache bench进行测试但结果包含错误中断管道,这与此问题类似如何防止errno 32中断管?.我已经尝试了答案但无济于事.

  Traceback (most recent call last):
  File "/Library/Python/2.7/site-packages/paste/httpserver.py", line 1068, in process_request_in_thread
    self.finish_request(request, client_address)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 323, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 641, in __init__
    self.finish()
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 694, in finish
    self.wfile.flush()
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/socket.py", line 303, in flush
    self._sock.sendall(view[write_offset:write_offset+buffer_size])
error: [Errno 32] Broken pipe
Run Code Online (Sandbox Code Playgroud)

服务器代码如下所示,我不知道如何使用线程池改善连接?

from paste import httpserver

    @route('/')
    def index():
        connection = pymongo.MongoClient(connectionString)
        db = connection.test
        collection = db.test
        return str(collection.find_one())

    application = default_app()
    httpserver.serve(application, host='127.0.0.1', port=8082)
Run Code Online (Sandbox Code Playgroud)

Lun*_*ayo 3

问题是由于WSGIServer是同步服务器,不适用于高并发用户同时发送请求的情况。为了绕过这些回退,有很多第三方框架可以使用。其中流行的是 Gevent greenlet 库、Tornado 和 CherryPy。所有这些都基于事件驱动和异步方法,使它们能够处理多个并发用户。