downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

GearmanWorker::clone> <GearmanWorker::addServer
[edit] Last updated: Fri, 17 May 2013

view this page in

GearmanWorker::addServers

(PECL gearman >= 0.5.0)

GearmanWorker::addServersAdd job servers

Descrierea

public bool GearmanWorker::addServers ( string $servers = 127.0.0.1:4730 )

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.

Parametri

servers

A comma separated list of job servers in the format host:port. If no port is specified, it defaults to 4730.

Valorile întoarse

Întoarce valoarea TRUE în cazul succesului sau FALSE în cazul eșecului.

Exemple

Example #1 Add two job servers

<?php

$worker
= new GearmanWorker(); 
$worker->addServers("10.0.0.1,10.0.0.2:7003");

?>

Vedeți de asemenea



add a note add a note User Contributed Notes GearmanWorker::addServers - [1 notes]
up
0
matthew day
1 year ago
as of this note, the current released version of gearman doesn't really work so well to add multiple servers, although it's fixed in SVN

see: https://bugs.php.net/bug.php?id=59423

if i just add one server to my worker, it works just fine and sits and waits for a job to do

if I have more than 1 server in my worker, i get a timeout warning which causes the worker to generate a php notice and the while loop fails.

 
show source | credits | sitemap | contact | advertising | mirror sites