GearmanClient::addServer

(PECL gearman >= 0.5.0)
Add a job server to the client
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.

Parameters:
host

The job server host name.

port

The job server port.

Returns:

Returns TRUE on success or FALSE on failure.

Examples:
Adding two job servers
1
2
3
4
5
6
7
8
9
10
<?php
 
# Create our client object.
$gmclientnew 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);
 
?>
See also:

GearmanClient::addServers() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.