vectorface / gearman
Gearman (http://www.danga.com/gearman) is a system to farm out work to other machines. It can load balance function calls to lots of machines and allows you to call functions between languages. It can also run all function calls in parallel.
Requires
- php: >=8.0
- ext-json: *
- ext-sockets: *
Requires (Dev)
- friendsofphp/php-cs-fixer: ^v3.59.3
- phpunit/phpunit: ^9.5.18
- symfony/process: ^v5.0.0
This package is auto-updated.
Last update: 2024-10-11 20:01:43 UTC
README
This is a fork of mhlavac/gearman which has unfortunately been abandoned.
PHP library for interfacing with Danga's 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
Add following line to your composer.json
"vectorface/gearman": "^0.2"
You can use following command
composer.phar require --dev vectorface/geaman:^0.2
Examples
Client
<?php $client = new \Vectorface\Gearman\Client(); $client->addServer(); $result = $client->doNormal('replace', 'PHP is best programming language!'); $client->doBackground('long_task', 'PHP rules... PHP rules...');
Worker
<?php $function = function($payload) { return str_replace('java', 'php', $payload); }; $worker = new \Vectorface\Gearman\Worker(); $worker->addServer(); $worker->addFunction('replace', $function); $worker->work();
Versioning
This library uses semantic versioning.
License
This library is under the new BSD license. See the complete license. See the complete license
About
I've started working on this because you can't compile PECL gearman extension on windows where I had to use the code. Goal of this project is to make copy of the PECL gearman extension and allow PHP developers to use this implementation as a polyfill for it.