brianlmoon / net_gearman
PHP daemon for managing gearman workers
Installs: 338 769
Dependents: 1
Suggesters: 3
Security: 0
Stars: 84
Watchers: 10
Forks: 45
Open Issues: 2
Requires
- php: ^7.0.0|^8.0.0
Requires (Dev)
- phpunit/phpunit: ^9.6
This package is auto-updated.
Last update: 2024-11-22 00:54:06 UTC
README
About
Net_Gearman is a package for interfacing with Gearman. Gearman is a system to farm out work to other machines, dispatching function calls to machines that are better suited to do work, to do work in parallel, to load balance lots of function calls, or to call functions between languages.
Installation
$ composer require brianlmoon/net_gearman
Examples
Client
$client = new Net_Gearman_Client("localhost");
$set = new Net_Gearman_Set();
$task = new Net_Gearman_Task("Reverse_String", "foobar");
$task->attachCallback(
function($func, $handle, $result){
print_r($result)
}
);
$set->addTask($task);
$client->runSet($set, $timeout);
Job
class Reverse_String extends Net_Gearman_Job_Common {
public function run($workload) {
$result = strrev($workload);
return $result;
}
}
Worker
For easiest use, use GearmanManager for running workers. See: https://github.com/brianlmoon/GearmanManager
$worker = new Net_Gearman_Worker('localhost');
$worker->addAbility('Reverse_String');
$worker->beginWork();