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.
 
 
 

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