GearmanWorker::addServers
PHP function
Edit on GitHub ✎
(PECL gearman >= 0.5.0)
Add job servers
Description
GearmanWorker::addServers(string $servers = null, bool $setupExceptionHandler = true): bool
Adds one or more job servers to this worker. These go into a list of servers that can be used to run jobs. No socket I/O happens here.
Parameters
serversA comma separated list of job servers in the format host:port. If no port is specified, it defaults to 4730.
Return Values
Success
Examples
Add two job servers
php
<?php
$worker= new GearmanWorker();
$worker->addServers("10.0.0.1,10.0.0.2:7003");
?>See Also
GearmanWorker::addServer