我正在创建一个小型 python 脚本来创建 n 个线程,并且每个线程curl
在我的 Web 应用程序上调用 m 次。
调用脚本 ./multithreadedCurl.py 10 100
我希望 curl 执行 10*100 = 1000 次。但是我看到它正在创建 n 个线程,但每个线程只调用一次 curl。
这是因为正在使用子流程吗?
Python 版本 Python 2.7.2 操作系统:Mac OSX 10.8.2 (Mountain Lion)
非常感谢任何帮助,我对 python 很陌生,这是我 Python 开发的第二天。
#!/usr/bin/python
import threading
import time
import subprocess
import sys
import math
# Define a function for the thread
def run_command():
count = 0
while (count < int(sys.argv[2])):
subprocess.call(["curl", "http://127.0.0.1:8080"])
count += 1
threadCount = 0
print sys.argv[0]
threadLimit = int(sys.argv[1])
while threadCount < threadLimit:
t=threading.Thread(target=run_command)
t.daemon = True # set thread to daemon ('ok' won't be printed in this case)
t.start()
threadCount += 1`