2017 © Pedro Peláez
 

library gearman-connection

A simple and clean library to get informations from your gearman jobserver.

image

tm/gearman-connection

A simple and clean library to get informations from your gearman jobserver.

  • Wednesday, March 8, 2017
  • by tommymuehle
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

gearman-connection

No Maintenance Intended, (*1)

A simple and clean library to get informations from your gearman jobserver., (*2)

Minimal example usage:

require_once __DIR__ . '/../vendor/autoload.php';

use TM\Gearman as Gearman;

$connection = new Gearman\Connection();
$response = $connection->send(new Gearman\Request('status'));

// Do something with the response ...
echo $response;

Customize

If you don't use the default values:, (*3)

$connection = new Gearman\Connection(
    ['host' => 'my.gearman.host, 'port' => 1234]
);

And if you don't want an auto-connect by default:, (*4)

$connection = new Gearman\Connection(
    ['host' => 'my.gearman.host, 'port' => 1234], 
    false
);
...
$connection->connect();
...

Contributing

Please refer to CONTRIBUTING.md for information on how to contribute., (*5)

The Versions

08/03 2017

dev-master

9999999-dev https://github.com/tommy-muehle/php-gearman-connection

A simple and clean library to get informations from your gearman jobserver.

  Sources   Download

MIT

The Requires

  • ext-gearman *
  • php ^5.4.0|~7.0

 

The Development Requires

by Michael Schindler

connection gearman gearman-connection jobserver

06/09 2015

1.0.1

1.0.1.0

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-gearman *

 

The Development Requires

by Michael Schindler

03/09 2015

1.0.0

1.0.0.0

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-gearman *

 

The Development Requires

by Michael Schindler