Php/docs/gearmanclient.addservers
来自菜鸟教程
GearmanClient::addServers
(PECL gearman >= 0.5.0)
GearmanClient::addServers — Add a list of job servers to the client
说明
public GearmanClient::addServers
([ string $servers
= 127.0.0.1:4730
] ) : bool
Adds a list of job servers that can be used to run a task. No socket I/O happens here; the servers are simply added to the full list of servers.
参数
servers
- A comma-separated list of servers, each server specified in the format '
host:port
'.
返回值
成功时返回 true
, 或者在失败时返回 false
。
范例
Example #1 Add two job servers
<?php# Create our client object.$gmclient= new GearmanClient();# Add multiple job servers, the first on the default 4730 port$gmclient->addServers("10.0.0.1,10.0.0.2:7003");?>