2017 © Pedro Peláez
 

symfony-bundle disque-bundle

Disque bundle for Symfony

image

awildeep/disque-bundle

Disque bundle for Symfony

  • Monday, September 21, 2015
  • by awildeep
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Awildeep/DisqueBundle

Disque workqueue Disque is a distributed message broker. mariano/disque-php disque-php, a Disque PHP library., (*1)

The Awildeep/DisqueBundle is a Symfony2 Bundle that provides an easy way to integrate disque-php with Symfony2, (*2)

Why do I need this?

Firstly, you do not need this at all., (*3)

mariano/disque-php is perfectly usable in Symfony2 without this bundle. This bundle is only intended to provide some useful integration points with Symfony2:, (*4)

  • Yaml configuration of Disque server(s)
  • Command-line interaction with Disque via Symfony2's Commands. (Coming soon)

Should I use this?

Sure. Or don't. Either way I provide no warranty, guarantee, or promises what-so-ever. However if you like this feel free to patch as needed., (*5)

What is missing?

Almost everything. Currently this bundle only supports basic configuration, and provides a way to access the DisqueServer object via a service. More coming as I need it, or want it., (*6)

Installation

Composer

``` bash
$ php composer.phar require awildeep/disque-bundle
```

Enable the bundle

``` php
<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Awildeep\DisqueBundle\AwildeepDisqueBundle(),
    );
}

```

Configure

``` yaml
# app/config/config.yml

awildeep_disque:
    autoconnect: true
    connection_timeout: 30
    servers:
        primary:
            server: 127.0.0.1
            port: 7711
            #password: password
        #server_2:
            #server: 172.16.0.1
            #port: 7711
            #password: password

```

License

This bundle is under the MIT license. See the complete license., (*7)

Credits

Author

Greg Militello, (*8)

Contributor(s) :

Currently none., (*9)

The Versions

21/09 2015

dev-master

9999999-dev https://github.com/awildeep/disque-bundle

Disque bundle for Symfony

  Sources   Download

MIT

The Requires

 

by Greg Militello

bundle symfony asynchronous messaging disque queueing