downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

GearmanClient::addServers> <GearmanClient::addOptions
[edit] Last updated: Fri, 17 May 2013

view this page in

GearmanClient::addServer

(PECL gearman >= 0.5.0)

GearmanClient::addServerAñade un servidor de trabajos al cliente

Descripción

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

Añade un servidor de trabajos a la lista de servidores que pueden usarse para ejecutar una tarea. No hay tráfico de entrada y salida vía socket en este punto; el servidor simplemente es añadido a la lista.

Parámetros

host

Nombre del host del job server.

port

Puerto del job server.

Valores devueltos

Devuelve TRUE en caso de éxito o FALSE en caso de error.

Ejemplos

Ejemplo #1 Añadir dos servidores de trabajos

<?php

# Creación del objeto cliente
$gmclient= new GearmanClient();

# Añadimos dos servidores, el primero en el puerto por defecto: 4730
$gmclient->addServer("10.0.0.1"); 
$gmclient->addServer("10.0.0.2"7003);

?>

Ver también



add a note add a note User Contributed Notes GearmanClient::addServer - [1 notes]
up
0
info at phpgangsta dot de
1 month ago
Since a few versions the port parameter is not optional anymore. I have version 1.1.1 of pecl/gearman compiled with libgearman 1.1.5, and I'm getting the following error:

send_packet(GEARMAN_COULD_NOT_CONNECT) Failed to send server-options packet -> libgearman/connection.cc:430

This happens if you don't provide a port.

Just set the second parameter to 4730 and it is working again.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites