您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

20 行
619 B

  1. // Copyright 2011 Xing Xing <mikespook@gmail.com> All rights reserved.
  2. // Use of this source code is governed by a MIT
  3. // license that can be found in the LICENSE file.
  4. /*
  5. This module is a Gearman API for the Go Programming Language.
  6. The protocols were written in pure Go. It contains two sub-packages:
  7. The client package is used for sending jobs to the Gearman job server,
  8. and getting responses from the server.
  9. import "github.com/mikespook/gearman-go/client"
  10. The worker package will help developers to develop Gearman's worker
  11. in an easy way.
  12. import "github.com/mikespook/gearman-go/worker"
  13. */
  14. package gearman