Php/docs/gearmanclient.addserver

提供:Dev Guides
< Php
2020年12月14日 (月) 09:41時点におけるNotes (トーク | 投稿記録)による版 (autoload)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

GearmanClient::addServer

(PECL gearman >= 0.5.0)

GearmanClient::addServerAdd a job server to the client


説明

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.


パラメータ

host
ジョブサーバーのホスト名。
port
ジョブサーバーのポート番号。


返り値

成功した場合に true を、失敗した場合に 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);?>

参考