0

I have to use Gearman for background tasks.

someone tell me that there is a user interface for gearman, i am not able to find out any good tutorial related to gearman so through i can start learning it.

Please give good link for a beginner to learn gearman.

Anurag
  • 1,013
  • 11
  • 30

2 Answers2

0

I guess a good point to start is the Gearman website itself gearman.org or you may look at this question

Community
  • 1
  • 1
Aley
  • 8,540
  • 7
  • 43
  • 56
0

If you are using the java-version.

There is an function in ClientImpl.java.

submitJob(BackendJobReturn jobReturn, 
    String functionName, 
    byte[] data, 
    GearmanJobPriority priority, 
    boolean isBackground)

Just let the last parameter be true, than you can run it background

Castrohenge
  • 8,525
  • 5
  • 39
  • 66
Allan-J
  • 336
  • 4
  • 11