Questions tagged [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.

Gearman is an open source application framework originally written in Perl by Brad Fitzpatrick. Brian Aker and Eric Day rewrote the framework in C.

Gearman is designed to distribute appropriate computer tasks to multiple computers, so large tasks can be done more quickly.

In some cases, load balancing rather than raw speed may be the main goal; a Web server, for instance, could use Gearman to send tasks for which it is not optimized to another computer (which may be running on a different architecture, using another operating system, or loaded with a computer language better suited to a particular operation).

Job server is available in three languages:

  • C/C++
  • Java
  • Perl

Client & Worker APIs are available in following languages:

  • libgearman (C)
  • Shell
  • Perl
  • Nodejs
  • PHP
  • Python
  • Java
  • Databases
  • JMS
  • C# / .NET

Some of the use cases provided at the web site:

Resources

IRC channel is #gearman on Freenode.

484 questions
-2
votes
1 answer

Is there a GearmanProvider for Silex?

I am looking for a provider thats gives me the ability to use Gearman with my Silex application. I have found https://github.com/skeetr/silex but it seems that this provider is too old and it uses pecl_http instead of curl. Does anyone know a better…
Roman
  • 2,530
  • 2
  • 27
  • 50
-2
votes
3 answers

How to make multiple gearman worker to work on single job

I am processing 1 lakh urls using perl gearman client and worker . I need your help to run single job in multiple worker . (ie if i have 5 workers and 1 client i want all these 5 workers to do the job of one client ),currently I am running 20…
-3
votes
1 answer

How to identify if gearman server is running on linux

I have following queries with respect to gearman server on linux 1) From command line, how can I identify if gearman server is currently running. 2) How to stop the server 3) How to start the server
Arti
  • 35
  • 1
  • 2
-5
votes
2 answers

Php gearman file upload

Is it possible upload a file using gearman ? Bye.
Aly
  • 117
  • 1
  • 4
1 2 3
32
33