We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
@yunwuxin 不知道下面自己的理解对不对,能否解答下 worker_num // 消费进程数 delay // ? sleep // 消费进程间隔时间 tries // 单个任务最大执行次数,0为不限制 timeout // 单个任务的最大执行时间
//队列 'queue' => [ 'enable' => true, 'workers' => [ // 默认队列 'default' => [ // 消费进程 'worker_num' => 1, 'delay' => 0, // 消费进程间隔时间 'sleep' => 3, // 单个任务最大执行次数,0为不限制 'tries' => 0, // 单个任务的最大执行时间 'timeout' => 60, ], ], ],
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@yunwuxin
不知道下面自己的理解对不对,能否解答下
worker_num // 消费进程数
delay // ?
sleep // 消费进程间隔时间
tries // 单个任务最大执行次数,0为不限制
timeout // 单个任务的最大执行时间
The text was updated successfully, but these errors were encountered: