Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

20 linhas
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