In my Rails application on Heroku, I want to execute a simple block of code in 5 specific cases in the future (every day for one day), up to the second.
Is there a good way to do this without a background process?
I do not want to use the Delayed Job, because this will require a copy of Worker, which costs ~ $ 30 per month. Seems unnecessary.
Is there a good way to do this without a Delayed Job / Heroku Worker?
Decided
Thanks for your answers - there seems to be no reliable way to accomplish this. Transition with a delay in work.
source
share