2013-03-28 13:02:59 -04:00
|
|
|
require_dependency 'score_calculator'
|
|
|
|
|
|
|
|
module Jobs
|
|
|
|
|
|
|
|
# This job will run on a regular basis to update statistics and denormalized data.
|
|
|
|
# If it does not run, the site will not function properly.
|
2013-08-07 13:25:05 -04:00
|
|
|
class PeriodicalUpdates < Jobs::Scheduled
|
2014-02-05 18:14:41 -05:00
|
|
|
every 15.minutes
|
2013-03-28 13:02:59 -04:00
|
|
|
|
|
|
|
def execute(args)
|
|
|
|
# Update the average times
|
2014-02-26 19:45:20 -05:00
|
|
|
Post.calculate_avg_time(1.day.ago)
|
|
|
|
Topic.calculate_avg_time(1.day.ago)
|
2013-03-28 13:02:59 -04:00
|
|
|
|
|
|
|
# Feature topics in categories
|
|
|
|
CategoryFeaturedTopic.feature_topics
|
|
|
|
|
|
|
|
# Update view counts for users
|
2013-10-03 23:28:49 -04:00
|
|
|
UserStat.update_view_counts
|
2013-03-28 13:02:59 -04:00
|
|
|
|
|
|
|
# Update the scores of posts
|
2014-02-26 19:45:20 -05:00
|
|
|
ScoreCalculator.new.calculate(1.day.ago)
|
2013-12-23 18:50:36 -05:00
|
|
|
|
2013-11-10 18:52:44 -05:00
|
|
|
# Automatically close stuff that we missed
|
|
|
|
Topic.auto_close
|
2013-03-28 13:02:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|