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

search for in the

GearmanClient::addTask> <GearmanClient::addServer
[edit] Last updated: Fri, 24 May 2013

view this page in

GearmanClient::addServers

(PECL gearman >= 0.5.0)

GearmanClient::addServersAdd a list of job servers to the client

Descrição

public bool GearmanClient::addServers ([ string $servers = 127.0.0.1:4730 ] )

Adds a list of job servers that can be used to run a task. No socket I/O happens here; the servers are simply added to the full list of servers.

Parâmetros

servers

A comma-separated list of servers, each server specified in the format 'host:port'.

Valor Retornado

Retorna TRUE em caso de sucesso ou FALSE em caso de falha.

Exemplos

Exemplo #1 Add two job servers

<?php

# Create our client object.
$gmclient= new GearmanClient();

# Add multiple job servers, the first on the default 4730 port
$gmclient->addServers("10.0.0.1,10.0.0.2:7003");

?>

Veja Também



add a note add a note User Contributed Notes GearmanClient::addServers - [1 notes]
up
-1
xcl_rockman at qq dot com
15 days ago
hey. how this function work
if i add more address include some bad server address
what's happen next?

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