GearmanClient::addServers
Add a list of job servers to the client
Description
public bool GearmanClient::addServers(string $servers
= null
, bool $setupExceptionHandler
= true
)
Parameters
-
servers
-
A comma-separated list of servers, each server specified in the format 'host:port
'.
Return Values
Returns true
on success or false
on failure.
Examples
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");
?>