GIL(Global Interpreter Lock)
·
프로그래밍 언어/파이썬
python Interpreter GIL 이해를 위해 수행되어야 하는 것은 파이썬 인터프리터의 이해입니다. 파이썬 인터프리터 : 파이썬 문법으로 작성된 코드를 한 줄씩 읽으면서 실행하는 프로그램 파이썬 인터프리터의 표준은 CPython입니다. C언어를 이용하여 구현한 파이썬 인터프리터입니다. GIL(Goloba Interpreter Lock) 전역 인터프리터 락. 위키에서의 정의는 아래와 같음. > In CPython, the global interpreter lock, or GIL, is a mutex that protects access to Python objects, preventing multiple threads from executing Python bytecodes at once. This..