Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using resque:scheduler gem in my rails 3 application.

How can start rake resque:scheduler in daemon mode.

and if you know then please let me know,

How can I configure this task in GOD script?

share|improve this question

2 Answers

up vote 1 down vote accepted

I guess you only have to do this

BACKGROUND=yes rake resque:scheduler 

and perhaps that would work check over here

Hope this help

share|improve this answer
thanks Viren have used the way PIDFILE=./resque-scheduler.pid BACKGROUND=yes rake resque:scheduler it worked for me – rkp Mar 2 at 5:56
PIDFILE=./resque-scheduler.pid BACKGROUND=yes rake resque:scheduler

complete doc of resque scheduler available here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.