GearmanWorker::addServers

Add job servers

説明

public bool GearmanWorker::addServers(string $servers = null, bool $setupExceptionHandler = true)

Adds one or more job servers to this worker. These go into a list of servers that can be used to run jobs. No socket I/O happens here.

パラメータ

servers

A comma separated list of job servers in the format host:port. If no port is specified, it defaults to 4730.

戻り値

成功した場合に true を、失敗した場合に false を返します。

例1 Add two job servers

<?php

$worker
= new GearmanWorker(); 
$worker->addServers("10.0.0.1,10.0.0.2:7003");

?>

参考

  • GearmanWorker::addServer