多核CPU上python多线程并行的一个假象
摘要:
GIL 与 Python 线程的纠葛 GIL 是什么东西?它对我们的 python 程序会产生什么样的影响?我们先来看一个问题。运行下面这段 python 程序,CPU 占用率是多少? # 请勿在工作中模仿,危险:) def dead_loop(): while True: pass dead_lo 阅读全文
posted @ 2017-03-09 18:57 alex.shu 阅读(3834) 评论(0) 推荐(3) 编辑