Do RabbitMQ, Beanstalk or Resque support scheduling a task at a certain date? -


i've looked @ rabbitmq, beanstalk , resque, seem geared towards asynchronous, non-delayed tasks (i.e., run of these possible).

do of them support scheduling task on timestamp?

beanstalk has provisions "delay" parameter whereby can delay message on delay queue specific period of time.

resque has 1 or more scheduling add-ons provide scheduling tasks.

with queues, delay integer specifying number of seconds delay (in case you'll need convert delta need). more robust scheduling -- part of task queue example -- take datetime values via client library.

note can use ironmq push queues (with delay beanstalk) or ironworker (scheduling task instead of queuing it). (note work iron.io.)


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -