推荐学习书目
› 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 · Nov 26, 2019 · 3065 views
    This topic created in 2494 days ago, the information mentioned may be changed or developed.
    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 replies  •  2019-11-27 15:46:33 +08:00
    keakon
        1
    keakon  
       Nov 26, 2019
    第三方的库就别想着用它接口以外的东西了
    Harlaus
        2
    Harlaus  
       Nov 27, 2019
    没听懂你想干嘛
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Privacy   ·   Solana   ·   2566 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 33ms · UTC 02:08 · PVG 10:08 · LAX 19:08 · JFK 22:08
    ♥ Do have faith in what you're doing.