PHP Doku:: Add job servers - gearmanworker.addservers.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteGearmanThe GearmanWorker classGearmanWorker::addServers

Ein Service von Reinhard Neidl - Webprogrammierung.

The GearmanWorker class

<<GearmanWorker::addServer

GearmanWorker::clone>>

GearmanWorker::addServers

(PECL gearman >= 0.5.0)

GearmanWorker::addServersAdd job servers

Beschreibung

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.

Parameter-Liste

servers

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

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

Beispiele

Beispiel #1 Add two job servers

<?php

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

?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)