如题,想要进行一些压力测试,想获取一下线程池数量,文档里没看到方法,有人知道吗?
就是以下的这个包
from concurrent.futures import ThreadPoolExecutor
thread_pool = ThreadPoolExecutor()
我知道这个线程池在创建时可以限制最大线程数量。
但若不限制的话,我想尝试最大能达到多少,以及在多少的时候比较稳定。
谢谢
1
111111111111 2020-12-27 14:01:48 +08:00 1
num_threads = len(thread_pool._threads)
https://github.com/python/cpython/blob/3.9/Lib/concurrent/futures/thread.py#L184 |