Rails - good tool to create a scheduled background process which will regularly retrieve messages fr
Posted
by adam
on Stack Overflow
See other posts from Stack Overflow
or by adam
Published on 2010-05-28T02:49:55Z
Indexed on
2010/05/28
2:51 UTC
Read the original article
Hit count: 293
ruby-on-rails
|background
Background Job gets mentioned a lot but all the tutorials I've seen seem to indicate that its for queuing jobs which are created by some external event such as a user clicking "Send mail".
But what about when you have code that needs to scheduled to run every 30 seconds to listen for new messages from twitter?
Normally rake is recommended for set in stone schedules but it inst so efficient for frequent jobs as it has to to load the entire rails app each time.
Can anyone recommend anything for this situation?
© Stack Overflow or respective owner