Skip to content

Angle/PheanstalkBundle

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PheanstalkBundle

Symfony Bundle for Pheanstalk – A PHP client for the beanstalkd workqueue.

Forked from armetiz/LeezyPheanstalkBundle.

Uses the Pheanstalk PHP client by Paul Annesley

This package is a Symfony Bundle that provides the following features:

  • Command Line Interface for manage the queues.
  • An integration to the Symfony event system.
  • An integration to the Symfony profiler system to monitor your beanstalk server.
  • An integration to the Symfony logger system.
  • A proxy system to customize the command features.
  • Auto-wiring: PheanstalkInterface

Support Symfony 5.

Documentation :

Usage example

<?php

namespace Acme\DemoBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;

class HomeController extends Controller {

    public function indexAction() {
        $pheanstalk = $this->get("angle.pheanstalk");

        // ----------------------------------------
        // producer (queues jobs)

        $pheanstalk
          ->useTube('testtube')
          ->put("job payload goes here\n");

        // ----------------------------------------
        // worker (performs jobs)

        $job = $pheanstalk
          ->watch('testtube')
          ->ignore('default')
          ->reserve();

        echo $job->getData();

        $pheanstalk->delete($job);
    }

}
?>

Testing

$ composer update
$ phpunit

License

This bundle is under the MIT license. See the complete license.

Credits

Current Maintainers: Angle Consulting

Original Author - Thomas Tourlourat

Original Contributors:

About

Symfony Bundle for Pheanstalk - A PHP client for beanstalkd queue

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 95.7%
  • Twig 4.3%