(PECL gearman >= 0.5.0)
Add a list of job servers to the client
public bool GearmanClient::addServers ([ string $servers = 127.0.0.1:4730 ] )
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.
Parameters:
servers
A comma-separated list of servers, each server specified in the format 'host:port'.
Returns:
Returns TRUE
on success or FALSE
on failure.
Examples:
Add two job servers
1 2 3 4 5 6 7 8 9 | <?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" ); ?> |
See also:
Please login to continue.