You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Xing Xing ddba5ab2f2 blocking on GRAB_JOB instead of executing blocked 10 years ago
client merge, client need to refactor 10 years ago
example merge, client need to refactor 10 years ago
worker blocking on GRAB_JOB instead of executing blocked 10 years ago
.gitignore Initial commit 11 years ago
.hgtags Added tag 0.1.2 for changeset 67f11fa2301f 11 years ago
.travis.yml merge, client need to refactor 10 years ago
LICENSE Added the client 13 years ago
README.md go fmt 10 years ago
gearman.go started refactoring worker 10 years ago
gearman_test.go fixed global test-case 10 years ago

README.md

Gearman-Go

Build Status

This package is a Gearman API for Golang. It was implemented a native protocol for both worker and client API.

Install

Install the client package:

$ go get github.com/mikespook/gearman-go/client

Install the worker package:

$ go get github.com/mikespook/gearman-go/worker

Install both:

$ go get github.com/mikespook/gearman-go

Usage

Worker

w := worker.New(worker.Unlimited)
w.ErrHandler = func(e error) {
    log.Println(e)
}
w.AddServer("127.0.0.1:4730")
w.AddFunc("ToUpper", ToUpper, worker.Immediately)
w.AddFunc("ToUpperTimeOut5", ToUpper, 5)
if err := w.Ready(); err != nil {
    log.Fatal(err)
    return
}
go w.Work()

Client

c, err := client.New("tcp4", "127.0.0.1:4730")
// ...
defer c.Close()
data := []byte("Hello\x00 world")
c.ErrHandler = func(e error) {
    log.Println(e)
    panic(e)
}
jobHandler := func(job *client.Job) {
    log.Printf("%s", job.Data)
}
handle := c.Do("ToUpper", data, client.JOB_NORMAL, jobHandler)
// ...

Branches

Version 0.x means: It is far far away from stable.

Use at your own risk!

  • 0.1-testing Old API and some known issues, eg. issue-14
  • 0.2-dev Refactoring a lot of things
  • master current usable version

Authors

Open Source - MIT Software License

Copyright (c) 2012 Xing Xing

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.