V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
18870715400
V2EX  ›  Python

# 关于 Python 中的 threadpool

  •  
  •   18870715400 · 2019-11-26 14:43:25 +08:00 · 2232 次点击
    这是一个创建于 1584 天前的主题,其中的信息可能已经有所发展或是发生改变。
    import threadpool
    pool = threadpool.ThreadPool(10)
    def fun(s):
        print(s)
    while 1:
        params = create_num()
        requests = threadpool.makeRequests(fun, params)
        [pool.putRequest(req) for req in requests]
        pool.wait()
    

    想问一下大神,create_num 函数是一个随机产生长度 1 到 10 的列表, 我想请问一下除了 create_num 函数 有没有其它方法来监控 pool 中运行的线程的个数

    2 条回复    2019-11-27 15:46:33 +08:00
    keakon
        1
    keakon  
       2019-11-26 15:22:52 +08:00
    第三方的库就别想着用它接口以外的东西了
    Harlaus
        2
    Harlaus  
       2019-11-27 15:46:33 +08:00
    没听懂你想干嘛
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3561 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 29ms · UTC 04:59 · PVG 12:59 · LAX 21:59 · JFK 00:59
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.