(PECL gearman >= 0.5.0)
GearmanWorker::addServer — Add a job server
Adds a job server to this worker. This goes into a list of servers than can be used to run jobs. No socket I/O happens here. If no host is specified, localhost is used. The default Gearman server port is 4730.
The job server host name. Defaults to 'localhost'.
The job server port. Defaults to 4730.
Returns TRUE on success or FALSE on failure.
Example #1 Add alternate Gearman servers
<?php
$worker= new GearmanWorker();
$worker->addServer("10.0.0.1");
$worker->addServer("10.0.0.2", 7003);
?>