如题。
1
Trim21 2019-10-26 22:39:51 +08:00 1
默认是线程池吧
|
2
BigBrother1024 2019-10-26 22:49:30 +08:00 via Android
|
3
SD10 2019-10-26 22:53:22 +08:00 via Android 1
对于任务来说是并行,这就像领导给你们派任务,多个小工一个人领一份工作,同时干,任务多了就在队列里等着分配。
|
4
Trim21 2019-10-26 23:10:04 +08:00
说错了,默认是进程池(
|
5
ClericPy 2019-10-26 23:52:32 +08:00
很多东西搜一下省多少字
The Celery worker itself does not process any tasks. It spawns child processes (or threads) and deals with all the book keeping stuff. The child processes (or threads) execute the actual tasks. These child processes (or threads) are also known as the execution pool. |
6
SD10 2019-10-27 11:51:37 +08:00 via Android 1
上边说错了,应该是并发。
|