Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- windows forms
- paramiko
- 기타 연주
- VS Code
- ubuntu
- Selenium
- mysql
- pandas
- SSH
- Visual Studio
- JSON
- Docker
- 핑거스타일
- Python
- 오류
- 프로그래머스
- OpenCV
- LIST
- error
- C++
- label
- Linux
- 채보
- pytorch
- C#
- C
- Numpy
- 명령어
- YOLO
- pip
Archives
- Today
- Total
기계는 거짓말하지 않는다
Python RLock 자원 동시 접근 관리 본문
Mutex와 유사하다고 생각하면 된다.
https://docs.python.org/ko/3/library/threading.html#rlock-objects
RLock은 재귀 호출 시 문제를 고려한 lock이다.
RLock 미사용
import threading
number = 0
def multi_call_function(call_name : str):
global number
number += 1
print(f"Call Name: {call_name}, Number: {number}")
def function_A():
for i in range(3):
multi_call_function("function_A")
def function_B():
for i in range(3):
multi_call_function("function_B")
thread_a = threading.Thread(target=function_A)
thread_b = threading.Thread(target=function_B)
thread_a.start()
thread_b.start()
thread_a.join()
thread_b.join()
RLock 사용
from threading import RLock
import threading
lock = RLock()
number = 0
def multi_call_function(call_name : str):
global number
with lock:
number += 1
print(f"Call Name: {call_name}, Number: {number}")
def function_A():
for i in range(3):
multi_call_function("function_A")
def function_B():
for i in range(3):
multi_call_function("function_B")
thread_a = threading.Thread(target=function_A)
thread_b = threading.Thread(target=function_B)
thread_a.start()
thread_b.start()
thread_a.join()
thread_b.join()
'Python' 카테고리의 다른 글
Python 특정 코드 실행 시간 시간:분:초 출력 (0) | 2022.09.11 |
---|---|
Python 날짜 문자열 변환 (0) | 2022.08.25 |
Python Error argument after * must be an iterable, not Queue (0) | 2022.06.10 |
Python configparser key 대소문자 구분 (0) | 2022.05.21 |
Python 소수점 제한, 출력 (0) | 2022.05.08 |
Comments