Download the PHP package marlonfan/disque-php without Composer
On this page you can find all versions of the php package marlonfan/disque-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download marlonfan/disque-php
More information about marlonfan/disque-php
Files in marlonfan/disque-php
Package disque-php
Short Description PHP library for Disque, an in-memory, distributed job queue
License MIT
Homepage https://github.com/mariano/disque-php
Informations about the package disque-php
disque-php
A PHP library for the very promising disque distributed job queue. Features:
- Support for both PHP (5.5+) and HHVM
- No dependencies: Fast connection to Disque out-of-the-box
- High level API to easily push jobs to a queue, and retrieve jobs from queues
- Easily schedule jobs for execution at a certain
DateTime
- Use the built in
Job
class, or implement your own - Smart node connection support based on number of jobs produced by nodes
- Connect to Disque with the built-in connection, or reutilize your existing Redis client (such as predis)
- Supporting all current Disque commands, and allows you to easily implement custom commands
- Fully unit tested
Installation
If you want to run its tests remove the --no-dev
argument.
Usage
This library provides a Queue API for easy job pushing/pulling, and direct access to all Disque commands via its Client API.
Create the client:
Queue a job:
Schedule job to be processed at a certain time:
Fetch queued jobs, mark them as processed, and keep waiting on jobs:
For more information on the APIs provided, read the full documentation.
Testing
Contributing
Please see CONTRIBUTING for details.
Support
If you need some help or even better want to collaborate, feel free to hit me on twitter: @mgiglesias
Security
If you discover any security related issues, please contact @mgiglesias instead of using the issue tracker.
Acknowledgments
First and foremost, Salvatore Sanfilippo for writing what looks to be the definite solution for job queues (thanks for all the fish Gearman).
Other disque client libraries for the inspiration.
The PHP League for an awesome README.md
skeleton,
and tips about packaging PHP components.
A special acknolewdgment and appreciation for our amazing contributors!
License
The MIT License (MIT). Please see License File for more information.