mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:15:46 +08:00
6b83ed0347
New algorithm will not wipe the entire table anymore and will only remove invisible topics and add new visible topics.
34 lines
792 B
Ruby
34 lines
792 B
Ruby
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.
|
|
class PeriodicalUpdates < Jobs::Scheduled
|
|
every 15.minutes
|
|
|
|
def execute(args)
|
|
# Update the average times
|
|
Post.calculate_avg_time(1.day.ago)
|
|
Topic.calculate_avg_time(1.day.ago)
|
|
|
|
# Feature topics in categories
|
|
CategoryFeaturedTopic.feature_topics
|
|
|
|
# Update view counts for users
|
|
UserStat.update_view_counts
|
|
|
|
# Update the scores of posts
|
|
ScoreCalculator.new.calculate(1.day.ago)
|
|
|
|
# Update the scores of topics
|
|
TopTopic.refresh!
|
|
|
|
# Automatically close stuff that we missed
|
|
Topic.auto_close
|
|
end
|
|
|
|
end
|
|
|
|
end
|