微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

python GIL——全局解释锁

In cpython,the global interpreter lock,or GIL,is a mutex that prevents multiple native threads from executing Python bytecodes at once. This lock is necessary mainly because cpython’s memory management is not thread-safe. (However,since the GIL exists,other features have grown to depend on the guarantees that it enforces.)

GIL: 全局解释锁

cpython解释器:

    python在执行的时候同一时刻只允许一个线程运行

因为存在GIL,所以cpython中无法利用多核,解决方法是多进程+协程

cpu任务:    

    IO密集型    

    计算密集型

    time.sleep()    等同于IO操作

对于IO密集型的任务:python的多线程的是有意义的

对于计算密集型的任务:python的多线程不建议使用,python不适用。

多进程+协程实际解决是IO密集型


这篇文章透彻的剖析了GIL对python多线程的影响,强烈推荐看一下:http://www.dabeaz.com/python/UnderstandingGIL.pdf 


版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐