Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
mikespook b266c0cfe4 Added tag go1-0.1 for changeset a3b64f831c51 12 роки тому
client add timeout to client.Do 12 роки тому
common add timeout to client.Do 12 роки тому
example The worker can be working now. 12 роки тому
worker add timeout to client.Do 12 роки тому
.hgtags Added tag go1-0.1 for changeset a3b64f831c51 12 роки тому
LICENSE Added the client 13 роки тому
README.md add timeout to client.Do 12 роки тому
gearman.go fixing for 'go install' 12 роки тому

README.md

Gearman API for golang

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

Copyright 2012 Xing Xing mikespook@gmail.com All rights reserved. Use of this source code is governed by a MIT license that can be found in the LICENSE file.

INSTALL

This will install the client:

$ go get bitbucket.org/mikespook/gearman-go/client

This will install the worker:

$ go get bitbucket.org/mikespook/gearman-go/worker

This will install the client and the worker automatically:

$ go get bitbucket.org/mikespook/gearman-go

SAMPLE OF USAGE

Worker

$ cd example

$ go build worker

$ ./worker

Client

$ cd example

$ go build client

$ ./client

Code format

$ gofmt -spaces=true -tabwidth=4 -w=true -tabindent=false $(DIR)

Contacts

Xing Xing mikespook@gmail.com

http://mikespook.com

http://twitter.com/mikespook

History

  • 0.1 Refactoring code, redesign the API.
  • 0.0.1 Initial implementation, ugly code-style, slow profermance and unstable API.

TODO

  • Can not grab a job correctly.
  • The worker should can reconnect to the job server.