[Rails] Delayed Job Question

2012-08-31 Thread Karthikeyan A k
Hello People, I just want to know how the delay job gem works. I am confused how it detects when the server is having less load and does computing intensive job at that time. Or it just tries to do some thing, if it fails, waits for random time and does it again? -- Posted via http://www.ruby-f

Re: [Rails] Delayed Job Question

2012-08-31 Thread thiagocifani
DelayedJob just creates anotar thread and a send the email or execute the method on parallel without stop the ruby thread! You can set a delay to call the method but it does not works as you throught! ;) Sent from my iPhone On 31/08/2012, at 23:47, Karthikeyan A k wrote: > Hello People, > >