1. 首页
  2. 编程语言
  3. Python
  4. python并发技术实现(多线程、多进程)

python并发技术实现(多线程、多进程)

上传者: 2018-12-25 11:21:16上传 RAR文件 3KB 热度 71次
压缩包内包含四个文件,实现的效果都是通过多线程或多进程执行加法运算; multiprocess_queue,通过任务队列方式实现多进程任务;(multiprocessing模块) multithread_queue,通过任务队列方式实现多线程任务;(threading模块) multiprocess_pool,通过进程池方式实现多进程任务;(concurrent.futures模块) multithread_pool,通过线程池方式实现多线程任务; (concurrent.futures模块)
用户评论
码姐姐匿名网友 2018-12-25 11:21:16

很不错哦,学习到了多并发,实现了多并发自动化测试