标签: python django nginx gunicorn gevent-socketio
Gunicorn design说:
Gunicorn relies on the operating system to provide all of the load balancing when handling requests.
对于WebSocket请求,这导致对工作者的请求的负载平衡不均衡。也就是说,一些工作者处理的WebSocket连接比其他人多得多。你是如何处理这个并得到统一的分布?
我正在使用geventwebsocket作为WebSocket服务器应用程序。