Skip to content

Lithium plugin that gives support for delayed jobs

Notifications You must be signed in to change notification settings

agborkowski/li3_delayed_job

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Delayed JOb

Delayed_job (or DJ) encapsulates the common pattern of asynchronously executing longer tasks in the background.

This is a direct port of Delayed::Job.

Installation

Check out the code to your library directory

cd libraries
git clone [email protected]:cgarvis/li3_delayed_job.git

Include the library in your /app/config/bootstrap/libraries.php

Libraries::add('li3_delayed_job');

Usage

Jobs are simple objects with a method called perform. Any object which responds to perform can be stuffed into the jobs collection. Job objects are serialized to yaml so that they can later be resurrected by the job runner.

Running the jobs

You can invoke li3 jobs work which will start working off jobs. You can cancel the task with CTRL-C

Keep in mind that each worker will check the database at least every 5 seconds.

Cleaning up

You can invoke li3 jobs clear to delete all jobs in the queue

About

Lithium plugin that gives support for delayed jobs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published