Skip to content

all-ride/ride-lib-queue-beanstalkd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Ride: Beanstalkd Queue Library

Beanstalkd implementation for the queue library of the PHP Ride framework.

This implementation could not implement an overview of the waiting queue jobs nor updating the status since Beanstalkd does not support this.

Code Sample

Check this code sample to see how to initialize this library:

<?php

use ride\library\queue\BeanstalkdFactory;
use ride\library\queue\BeanstalkdQueueManager;

function createQueueManager() {
    $factory = new BeanstalkdFactory();
    
    $client = $factory->createClient('localhost', 11300);
    
    $queueManager = new BeanstalkdQueueManager($client);
    
    return $queueManager;
}

Related Modules

You can check the following related modules to this library:

Installation

You can use Composer to install this library.

composer require ride/lib-queue

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages