I am working on a Rails application, where is a lot of articles. Every articles can be published whenever - the author of an article can select an hour when he want to publish the article and also the minute when (00, 10, 20, 30, 40, 50).
What makes me worried here - how to set up the CRON here? I publish the articles with the Delayed jobs gem. I know that I can set up the CRON to be running every 10 minutes, but let's say that there is 10 articles that should be published at 11:20 PM - can - or will the the CRON process all these 10 articles and will there articles be published by the Delayed Jobs?
Because there is just 10 minutes on processing these tasks (as the CRON will be run at every 00, 10, 20, 30, 40 and 50 minute) - is that enough time?