|
Revision 326, 0.8 kB
(checked in by gethema..@gmail.com, 2 weeks ago)
|
check in new backgroundrb code
|
| Line | |
|---|
| 1 |
= BackgrounDRb |
|---|
| 2 |
|
|---|
| 3 |
BackgrounDRb is a Ruby job server and scheduler. Its main intent is to be |
|---|
| 4 |
used with Ruby on Rails applications for offloading long-running tasks. |
|---|
| 5 |
Since a Rails application blocks while serving a request it is best to |
|---|
| 6 |
move long-running tasks off into a background process that is divorced |
|---|
| 7 |
from http request/response cycle. |
|---|
| 8 |
|
|---|
| 9 |
This new release of BackgrounDRb is also modular and can be used without Rails so that any Ruby program or framework can use it. |
|---|
| 10 |
|
|---|
| 11 |
Copyright (c) 2006 Ezra Zygmuntowicz,skaar[at]waste[dot]org, |
|---|
| 12 |
|
|---|
| 13 |
Copyright (c) 2007 Hemant Kumar (gethemant [at] gmail.com ) |
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
== Notes |
|---|
| 17 |
|
|---|
| 18 |
If you are using UNIX styled scheduler and using activesupport helpers in yaml file, please note that, |
|---|
| 19 |
that will not work currently, because activesupport gem is not loaded before reading yaml file. |
|---|
| 20 |
|
|---|
| 21 |
== Usage |
|---|
| 22 |
|
|---|
| 23 |
Please look into http://backgroundrb.rubyforge.org |
|---|