作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 CPython 中,似乎内置操作是原子和线程安全的,根据:https://docs.python.org/3/glossary.html#term-global-interpreter-lock .
This simplifies the CPython implementation by making the object model (including critical built-in types such as dict) implicitly safe against concurrent access.
This all makes the assumption you are using CPython; Jython, IronPython, Pypy and other python implementations may make different decisions on when to switch threads.
最佳答案
根据 this question in the FAQ , PyPy 确实有 GIL。这应该防止对任何类型的变量的任何并发访问;因为实际上一次只有一个线程可以做任何事情。
Yes, PyPy has a GIL. Removing the GIL is very hard.
关于python - pypy 的 dict 线程安全吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61714466/
我是一名优秀的程序员,十分优秀!