Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
13 lines (9 loc) · 340 Bytes

2.3.52 - max_coroutine.md

File metadata and controls

13 lines (9 loc) · 340 Bytes

max_coroutine

设置当前工作进程最大协程数量。超过max_coroutine底层将无法创建新的协程,底层会抛出错误,并直接关闭连接。

Server程序中实际最大可创建协程数量等于 worker_num * max_coroutine

$server->set(array(
	'max_coroutine' => 3000,
))

默认值为3000