Displaying 1 result from an estimated 1 matches for "emailprocessorwork".
Did you mean:
emailprocessorworker
2007 Apr 06
2
Best way to start a worker
...ueue, and processes it (sends queued emails). Sends 10,
sleeps for a minute, sends 10 until done - very straightforward.
My question is, what would be the best way to run this? I have assumed a
cron like scheduled worker with a named key, but I don?t know. My worker
looks like this:
class EmailProcessorWorker < BackgrounDRb::Worker::RailsBase
def do_work(args)
queue = EmailQueue.new
queue.process_queue
end
end
EmailProcessorWorker.register
I do all the work in a Rails Model, since I can unit test it outside of
backgroundrb.
Does anyone have a backgroundrb_schedules.yml fil...