GearmanClient::addServers

(PECL gearman >= 0.5.0)

GearmanClient::addServersAdiciona uma lista de servidores de tarefa ao cliente

Descrição

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

Adiciona uma lista de servidores de tarefa que podem ser usados ​​para executar uma tarefa. Nenhuma E/S de soquete acontece aqui; os servidores são simplesmente adicionados à lista completa de servidores.

Parâmetros

servers

Uma lista de servidores separados por vírgulas, cada servidor especificado no formato 'host:porta'.

Valor Retornado

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

Exemplos

Exemplo #1 Adiciona dois servidores de tarefa

<?php

# Cria nosso objeto cliente.
$gmclient= new GearmanClient();

# Adiciona vários servidores de tarefa, o primeiro na porta padrão 4730
$gmclient->addServers("10.0.0.1,10.0.0.2:7003");

?>

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês) 2 notes

up
5
jachimcoudenys at gmail dot com
11 years ago
If you supply more than one server, it will always take the last server, unless it is unavailable. This is the way gearman works (and it is generally not a bad idea).

If you want to spread the jobs over multiple servers, you might want to shuffle the list of servers.
up
1
littlexiang521 at gmail dot com
11 years ago
actually client side will throw an exception when any of the servers is down or unreachable instead like

Fatal error: Uncaught exception 'GearmanException' with message 'Failed to set exception option' in /var/www/ipao/Api/Q2/Test/gm-test.php:11
Stack trace:
#0 /var/www/ipao/Api/Q2/Test/gm-test.php(11): GearmanClient->addServer('xxx.xxx.xxx.xxx')
#1 {main}
To Top