随笔分类 - python-进程,线程,协程
并发编程——进程
摘要:
process——进程 一.multiprocessing模块介绍 python中的多线程无法利用多核优势,如果想要充分地使用多核CPU的资源(os.cpu_count()查看),在python中大部分情况需要使用多进程。Python提供了 multiprocessing。 multiprocess

并发编程—协程
摘要:
asyncio————协程 实现协程有这么几种方法: greenlet 早期模块。 yield 关键字。 asyncio装饰器(python3.4以后) async,await关键字(python3.5之后)【推荐】 greenle 实现协程 pip install greenle from gre
