本文介绍了如何一次最多运行10个线程?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要向一个服务器发出1000个请求.

I want to make 1000 request to a single serwer.

我使用线程模块,但服务器阻止了我.

I use threading modul but server block me.

如何设置一次最多只能运行10个线程(形成1000个列表)的线程?

How to set thread that run only max 10 thread in one time (form a list of 1000)?

推荐答案

使用线程池.在Doug Hellman出色的线程池示例. ="http://pymotw.com/2/threading/" rel ="noreferrer">线程文章.

Use thread pooling. There's a thread pooling example in Doug Hellman's excellent threading article.

这篇关于如何一次最多运行10个线程?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 03:27