In the administration panel for my rails application I want to give the administrator the ability to create several users at one time (in the hundreds range). Would this be a good use for delayed_job?
+2
A:
I guess the users don't need to be created right away. If they are within the next 5 minutes, it's ok.
Then yeah, this is applicable with delayed job.
Damien MATHIEU
2009-10-23 15:48:49
+3
A:
Yes.
Here the criteria I use to determine if a delayed job should be used or not:
- Can this be a time intensive task?
- Is it a time sensitive task?
- Is it going to block the user from using the application until it finishes?
- Can it be automated easily?
If my answers were Yes, No, No, Yes, then I would use a delayed job. Your situation meets my criteria.
EmFi
2009-10-23 15:53:42
Really like this criteria set for using delayed job.
David Lyod
2010-06-02 09:05:39