GearmanClient::addServer
Add a job server to the client
Description
public bool GearmanClient::addServer(string $host
= null
, int $port
= 0, bool $setupExceptionHandler
= true
)
Parameters
-
host
-
The job server host name.
-
port
-
The job server port.
Return Values
Returns true
on success or false
on failure.
Examples
Example #1 Adding two job servers
<?php
# Create our client object.
$gmclient= new GearmanClient();
# Add two job servers, the first on the default 4730 port
$gmclient->addServer("10.0.0.1");
$gmclient->addServer("10.0.0.2", 7003);
?>
See Also
- GearmanClient::addServers