GearmanWorker::addServer

(PECL gearman >= 0.5.0)

GearmanWorker::addServerAdd a job server

说明

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

Adds a job server to this worker. This goes into a list of servers than can be used to run jobs. No socket I/O happens here.

参数

host

任务服务器主机名。

port

任务服务器端口号。

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 Add alternate Gearman servers

<?php
$worker
= new GearmanWorker();
$worker->addServer("10.0.0.1");
$worker->addServer("10.0.0.2", 7003);
?>

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top