| ObjStore documentation | view source | Contained in the ObjStore distribution. |
ObjStore::Job - Jobs for a Non-Preemptive Idle-Time Job Scheduler
Add an ObjStore::Job::Table to your database.
Sub-class ObjStore::Job and override the do_work method.
package ObjStore::Job use ObjStore::Mortician;
Maybe all jobs should have delayed destruction by default.
R running L infinite loop detected S sleeping - will retry every second T suspended D done K killed
Allowed to consume all available pizza slices.
Given pizza slices proportional to the priority until either all the pizza slices are consumed or all the jobs are asleep (feasts induce slumber :-).
Given all remaining pizza slices.
The whole scheduling operation occurs within a single transaction. While this means that any job can kill the entire transaction, this seems a better choice than wrapping every job in its own mini-transaction. Since transactions are relatively expensive, it is hoped that most of the time all jobs will complete without error.
Too bad you can't store CODEREFs in the database.
Time does not necessarily transmute into pizza.
| ObjStore documentation | view source | Contained in the ObjStore distribution. |