多线程和多进程结合使用

多线程和多进程结合使用

代码:

from threadpool import ThreadPool,makeRequests
from multiprocessing import Pool
from time import sleep,time
#随便定义一个函数当做线程池的任务,有具体任务(比如爬虫)时更改func里的代码
def func(a):
    print(a)
    sleep(1)
#将创建线程池的部分封装为一个函数,用进程池来调用
def create_threads(lst):
    t_pool = ThreadPool(10) #穿件线程池,包含10个线程
    tasks = makeRequests(func,lst) #创建任务列表
    for task in tasks:
        t_pool.putRequest(task) #将任务放进线程池
    t_pool.wait() #启动并等待线程池执行完

if __name__ == '__main__':
    p_pool = Pool(3)
    ts = [] #用来构建进程池的参数列表
    for i in range(1,4):
        a = []
        for j in range(10):
        	a.append(f'我是子进程{i}')
        ts.append(a)
    s = time()
    p_pool.map(create_threads,ts) #将任务放进进程池
    p_pool.close()#关闭进程池
    p_pool.join()#等待进程池执行完成
    e = time()
    print(f'执行时间:{e-s}s')


执行结果:

H:\Python虚拟环境\Spyder\Scripts\python.exe H:/Python培训/day9-招聘网站数据爬取/test.py
我是子进程1我是子进程1
我是子进程1我是子进程1我是子进程1我是子进程1
我是子进程1
我是子进程1


我是子进程1


我是子进程1
我是子进程2我是子进程2我是子进程2我是子进程2我是子进程2我是子进程2我是子进程2我是子进程2我是子进程2我是子进程2









我是子进程3我是子进程3我是子进程3我是子进程3我是子进程3我是子进程3我是子进程3我是子进程3我是子进程3我是子进程3









执行时间:1.6082665920257568s

Process finished with exit code 0

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值