파이썬 - 쓰레드 lock
여러 쓰레드에서 접근할 때 막는 방법, 찾아둔 거 저장 합니다. 아래 예제는 flask 에서 gunicorn 으로 proxy 하면 work thread 가 동시에 뜰 수도 있는데, 공유 자원을 lock 해서 한놈만 접근하도록 하는 코드 인듯. https://stackoverflow.com/questions/18213619/sharing-a-lock-between-gunicorn-workers Sharing a lock between gunicorn workers Is there a good way to share a multiprocessing Lock between gunicorn workers? I am trying to write a json API with Flask. Some of the API..