= 0.5.0)GearmanClient::addServer — Add a job server to the client說(shuō)明public GearmanClient::addServer(string $host">

GearmanClient::addServer

(PECL gearman >= 0.5.0)

GearmanClient::addServerAdd a job server to the client

說(shuō)明

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

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.

參數(shù)

host

任務(wù)服務(wù)器主機(jī)名。

port

任務(wù)服務(wù)器端口號(hào)。

返回值

成功時(shí)返回 true, 或者在失敗時(shí)返回 false

范例

示例 #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);

?>

參見(jiàn)