GearmanWorker
PHP Manual

GearmanWorker::addServer

(PECL gearman >= 0.5.0)

GearmanWorker::addServerAdd a job server

Description

public boolean GearmanWorker::addServer ([ string $host [, integer $port ]] )

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.

Parameters

host

The job server host name. Defaults to 'localhost'.

port

The job server port. Defaults to 4730.

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #1 Add alternate Gearman servers

<?php
$worker
= new GearmanWorker(); 
$worker->addServer("10.0.0.1"); 
$worker->addServer("10.0.0.2"7003);
?>

See Also


GearmanWorker
PHP Manual