search for: background_tasks

Displaying 3 results from an estimated 3 matches for "background_tasks".

Did you mean: background_task
2007 Sep 30
0
Patch: background_tasks.rake
Hi, * Background I develop rails app with backgrounDRb where one of its parent folders has a space in its name. * Problem rake backgroundrb:start and rake backgroundrb:stop do not work * Analysis This is because the line for start and stop in backgroundrb_tasks.rake do not quote #{scripts_src} * Patch Quote the #{scripts_src} in the two lines so they become
2006 May 15
10
BackgrounDRb background task runner and Application Wide Context Store
Friends- I''m happy to annouce the first alpa release of BackgrounDRb. This is a small framework for managing long running background tasks that allows for ajax progress bars and more. It also serves as an Application wide cache and context store for when you need something like sessions but shared between users and multiple backend processes like fcgi''s or mongrels.
2006 Aug 16
7
Forward of moderated message
OK I know whats happening. Your while loop completes and calls kill on the worker before your task_progress controller method ever gets called> So the worker is deleted and when you try to access it from rails you get an error because there is no longer a worker at that job key. The kill method is meant to be used within a worker that you fire and forget. If you want to get the