随笔分类 - 异步
摘要:greenlet 早期 yield gevent asyncio装饰器(py3.4) async 关键字(py3.5) 装饰器 import asyncio async def func(): print(1) await asyncio.sleep(2) # 遇到IO耗时操作,自动切换到tasks
阅读全文
posted @ 2020-05-22 13:54
慕沁