一、Python GIL锁
1. GIL锁介绍
- Python GIL锁 在Python中对多线程的调用影响非常大!!!
- GIL:又叫全局解释器锁(Global Interpreter Lock),每个线程在执行的过程中都需要先获取GIL,保证同一时刻只有一个线程在运行,目的是解决多线程同时竞争程序中的全局变量而出现的线程安全问题
- 既然GIL 能保证竞争不是很好吗? 好个毛线!!!
- In CPython, the global interpreter lock, or GIL, is a mutex that prevents multiple native threads from executi