discourse/app/jobs/scheduled/top_refresh_older.rb
Robin Ward 0a2036a99a OPTIMIZATION: Don't run 12 queries every 15 mins for the Top section.
Instead, run the daily queries once every hour, and the reset of the
queries once a day.
2014-08-01 16:25:20 -04:00

10 lines
141 B
Ruby

module Jobs
class TopRefreshOlder < Jobs::Scheduled
every 1.day
def execute(args)
TopTopic.refresh_older!
end
end
end