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
- goalng
- 코로나백신
- pep8
- 오큘러스퀘스트2
- restfulapi
- python
- pyenv
- 규칙없음
- vscode
- maxlinelength
- ProxyServer
- typevar
- opensouce
- 글쓰기가필요하지않은인생은없다
- httppretty
- printer_helper
- 조엘온소프트웨어
- flake8
- loadimpact
- 독후감
- Lint
- 유닉스의탄생
- Algorithm
- codewar
- springboot
- organizeImports
- GlobalInterprintLock
- conf
- Golang
- codewars
Archives
- Today
- Total
목록GlobalInterprintLock (1)
일상적 이야기들.
GIL 에 대해서 이야기를 해보자.
https://wiki.python.org/moin/GlobalInterpreterLock GIL 은 무엇인가 CPython에서 존재하는 개념으로, Jython, IronPython인 경우에는 GIL 이 존재하지 않습니다. GIL 은 Global Interprint 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 lock is necessary mainly because CPython's memory manageme..
프로그래밍/PYTHON
2021. 8. 5. 09:42