Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 296 Bytes

4.0.1 Python 下的多进程和多线程.md

File metadata and controls

7 lines (5 loc) · 296 Bytes

4.0.1 Python 下的多进程和多线程

名言

Python下多线程是鸡肋,推荐使用多进程!

多线程和多进程是不一样的!一个是 thread 库,一个是 multiprocessing 库。而多线程 thread 在 Python 里面被称作鸡肋的存在!