gil
-
Python: Global Interpreter Lock (GIL)컴퓨터/파이썬 2023. 1. 5. 21:49
GIL Python Wiki 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. The GIL prevents race conditions and ensures thread safety. wiki.python.org Introduction Global Interpreter Lock (GIL) GIL은 여러 네이티브 스레드가 동시에 파이썬 바이트 코드를 실행하는 것을 방지하는 메커니즘이다. 파이썬의 reference implementation인 CPython ..