bkeepers / qu

a Ruby library for queuing and processing background jobs.
MIT License
506 stars 50 forks source link

Question: How can I set a task to be performed only when it reaches an specific date? #37

Closed Nerian closed 12 years ago

Nerian commented 12 years ago

I want to create a Task, that contains the day it which it was created. When the task is, say, 12h old it should perform its task.

What could be an elegant way to do this?

bkeepers commented 12 years ago

You can't at this time. I'd recommend checking out rescue-scheduler or delayed_job for now. Qu may add support for scheduling at some point, but it's not high on the priorities right now.

Nerian commented 12 years ago

ok, thanks :)