GearmanClient::addTask

(PECL gearman >= 0.5.0)

GearmanClient::addTaskAdiciona uma tarefa para ser executada em paralelo

Descrição

public GearmanClient::addTask(
    string $function_name,
    string|int|float $workload,
    mixed $context = null,
    ?string $unique_key = null
): GearmanTask|false

Adiciona uma tarefa para ser executada em paralelo com outras tarefas. Chame este método para todas as tarefas para serem executadas em paralelo, então chame GearmanClient::runTasks() para executar a tarefa. Note que é preciso haver trabalhadores suficientes disponíveis para que todas as tarefas sejam executadas em paralelo.

Parâmetros

function_name

Uma função registrada que o trabalhador deve executar

workload

Dados serializados a serem processados

context

Contexto da aplicação para associar a uma tarefa

unique_key

Um identificador único usado para identificar uma tarefa específica

Valor Retornado

Um objeto GearmanTask ou false se a tarefa não pôde ser adicionada.

Exemplos

Exemplo #1 Envio básico de duas tarefas

<?php

# Cria o cliente gearman
$gmclient= new GearmanClient();

# Adiciona o servidor de tarefa padrão
$gmclient->addServer();

# Define uma função a ser chamada quando a tarefa estiver concluída
$gmclient->setCompleteCallback("complete");

# Adiciona uma tarefa para executar a função "reverse" na string "Hello World!"
$gmclient->addTask("reverse", "Hello World!", null, "1");

# Adiciona outra tarefa para executar a função "reverse" na string "!dlroW olleH"
$gmclient->addTask("reverse", "!dlroW olleH", null, "2");

# Executa as tarefas
$gmclient->runTasks();

function
complete($task)
{
print
"CONCLUÍDO: " . $task->unique() . ", " . $task->data() . "\n";
}

?>

O exemplo acima produzirá algo semelhante a:

CONCLUÍDO: 2, Hello World!
CONCLUÍDO: 1, !dlroW olleH

Exemplo #2 Envio básico de duas tarefas com passagem de contexto de aplicação

<?php

$client
= new GearmanClient();
$client->addServer();

# Define uma função a ser chamada quando a tarefa estiver concluída
$client->setCompleteCallback("reverse_complete");

# Adiciona algumas tarefas para um marcador onde serão colocados os resultados
$results = array();
$client->addTask("reverse", "Hello World!", $results, "t1");
$client->addTask("reverse", "!dlroW olleH", $results, "t2");

$client->runTasks();

# Os resultados agora devem ser preenchidos a partir das funções de retorno
foreach ($results as $id => $result)
echo
$id . ": " . $result['handle'] . ", " . $result['data'] . "\n";


function
reverse_complete($task, $results)
{
$results[$task->unique()] = array("handle"=>$task->jobHandle(), "data"=>$task->data());
}

?>

O exemplo acima produzirá algo semelhante a:

t2: H.foo:21, Hello World!
t1: H:foo:22, !dlroW olleH

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês) 3 notes

up
7
liv_romania at yahoo dot com
9 years ago
On PHP 5.5 you can use the following code for passing context by reference and avoid "Call-time pass-by-reference has been removed":

<?php
$client
= new GearmanClient();
$client->addServer();

# Set a function to be called when the work is complete
$client->setCompleteCallback("reverse_complete");

# Use StdClass instead of array
$results = new StdClass();
$results->value = array();

# Add some tasks for a placeholder of where to put the results
$client->addTask("reverse", "Hello World!", $results, "t1");
$client->addTask("reverse", "!dlroW olleH", $results, "t2");

$client->runTasks();

# The results should now be filled in from the callbacks
foreach ($results->value as $id => $result) {
echo
$id . ": " . $result['handle'] . ", " . $result['data'] . "\n";
}

function
reverse_complete(GearmanTask $task, StdClass $results)
{
$results->value[$task->unique()] = array(
"handle" => $task->jobHandle(),
"data" => $task->data()
);
}
?>
up
1
stanislav dot reshetnev at gmail dot com
10 years ago
Note that param $unique must be different for multiple tasks if You want to run they all separately. If param $unique is equal for multiple tasks You will get the same task:

<?php
$unique
=1;

$gclient = GearmanClient();
$gclient->addServer('srv');

$this->setCreatedCallback(function(GearmanTask $task) {
print
$task->jobHandle() . "\n";
});

$gclient->addTask('function_name', 'workload', null, $unique);
$gclient->addTask('function_name', 'workload', null, $unique);
$gclient->addTask('function_name', 'workload', null, $unique);
$gclient->runTasks();

sleep(5);
?>

This sript will print only one handler:

H:srv:377382343
H:srv:377382343
H:srv:377382343
up
0
Jeremy Zerr
11 years ago
As of PHP 5.3.0, you will get a warning saying that "call-time pass-by-reference" is deprecated when you use & in $client->addTask(..., ..., &$results, ...);. And as of PHP 5.4.0, call-time pass-by-reference was removed, so using it will raise a fatal error.

So that means that when you call addTask with a context parameter as in the example above like this:

<?php
# Add some tasks for a placeholder of where to put the results
$results = array();
$client->addTask("reverse", "Hello World!", &$results, "t1");
?>

You get this "call-time pass-by-reference" warning (or error). This can be avoided and still result in functional code by changing the context variable to be an object so that it is passed by reference like this:

<?php
$results
= new \stdClass();
$client->addTask("reverse", "Hello World!", $results, "t1");
?>

Then for completeness, change the complete handler to expect a reference:

<?php
function reverse_complete($task, &$results) { ... }
?>

Then inside the complete handler, you can use the $results object to save your results to be accessible outside the complete handler.
To Top