GearmanWorker::addServers

(PECL gearman >= 0.5.0)

GearmanWorker::addServersAdiciona servidores de trabalho

Descrição

public GearmanWorker::addServers(string $servers = null, bool $setupExceptionHandler = true): bool

Adiciona um ou mais servidores de trabalho a este trabalhador. Eles vão para uma lista de servidores que podem ser usados para executar trabalhos. Nenhuma E/S de soquete acontece aqui.

Parâmetros

servers

Uma lista separada por vírgulas de servidores de trabalho no formato host:porta. Se nenhuma porta for especificada, o padrão é 4730.

Valor Retornado

Retorna true em caso de sucesso ou false em caso de falha.

Exemplos

Exemplo #1 Adicionando dois servidores de trabalho

<?php

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

?>

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês) 1 note

up
0
matthew day
13 years 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.
To Top