Yes, Resque is really nice. The blog post goes through gihub's evaluation of the existing popular job handlers and why they wrote Resque.
You can scheduled jobs using crontab syntax in a yml file, and/or from code via Resque.enqueue(JobClass) or Resque.enqueue_at(30.seconds.from_now, JobClass). Jobs are just Ruby classes with a perform method, so you can run them from the Rails console if you like. The web UI allows you to see failed jobs, and retry them (very handy if a job takes parameters, so you want to re-run *that* job). Robert -- You received this message because you are subscribed to the Google Groups "Ruby or Rails Oceania" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rails-oceania?hl=en.
