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

search for in the

GearmanClient::addServers> <GearmanClient::addOptions
[edit] Last updated: Fri, 23 Mar 2012

view this page in

GearmanClient::addServer

(PECL gearman >= 0.5.0)

GearmanClient::addServerAdd a job server to the client

Açıklama

public bool GearmanClient::addServer ([ string $host = 127.0.0.1 [, int $port = 4730 ]] )

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

Değiştirgeler

host

The job server host name.

port

The job server port.

Dönen Değerler

Başarı durumunda TRUE, başarısızlık durumunda FALSE döner.

Örnekler

Örnek 1 Adding two job servers

<?php

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

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

?>

Ayrıca Bakınız



add a note add a note User Contributed Notes GearmanClient::addServer
There are no user contributed notes for this page.

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