Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个python中的调度程序,它将同时启动一系列线程(正好8个),当其中一个线程完成时,它将向作业池添加一个新线程,并启动它。这个过程将一直持续到所有线程(~100)都完成为止。
我看过 APScheduler 包。也许通过使用 add_job,我也许可以做到,但由于找不到任何示例,所以不清楚。
add_job(trigger, func, args, kwargs, jobstore='default', **options)
有谁知道如何在这个函数中设置触发器
这个问题的答案是使用并发期货
http://docs.python.org/dev/library/concurrent.futures.html