reference: http://d.hatena.ne.jp/Malan/20121007
flask + gevent websocket + gunicorn
실행 방법은
gunicorn --bind 0.0.0.0:yourwebsocketport -w 2 -k "geventwebsocket.gunicorn.workers.GeventWebSocketWorker" yourappfilename:app
으로 실행하면 아주 잘 되야한다.
그러나 쟁점은 gunicorn 실행시
if __name__ == "__main__" 에 걸리지 않는다는것이다.
걸리게 하려면 yourappfilename을 __main__대신 넣어주면 된다.
if __name__ == "yourappfilename"
그리고 실행하면 Address already in use를 만날수 있다.
그렇다면 살며시 이부분을 주석처리해준다.
# server = pywsgi.WSGIServer((myIP, config.NOTI_WS_PORT), app, handler_class=WebSocketHandler)
# server.serve_forever()
'python' 카테고리의 다른 글
flask with gevent monkey patch all (0) | 2017.07.26 |
---|---|
flask gevent spawn use a lot of memory (0) | 2017.04.05 |
gunicorn vs uwsgi (0) | 2017.01.20 |
flask async response (0) | 2017.01.04 |
functools.wraps에 대해 (0) | 2015.04.15 |