I am planning to write a script for a Rails app that will be constantly running and needs access to the ActiveRecord instance.
I've looked into Sidekiq and Resque but am not quite sure which tool is best for the job (access to ActiveRecord and constantly running in the background asynchronously from the main application).
Also, after reading about Sidekiq / Resque, I believe that those two solutions may be too heavyweight for what I want to do ( add some data to ActiveRecord ).
Anybody have experience with this?
Any help or tips would be appreciated. Thanks.