mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
0a2036a99a
Instead, run the daily queries once every hour, and the reset of the queries once a day.
9 lines
142 B
Ruby
9 lines
142 B
Ruby
module Jobs
|
|
class TopRefreshToday < Jobs::Scheduled
|
|
every 1.hour
|
|
|
|
def execute(args)
|
|
TopTopic.refresh_daily!
|
|
end
|
|
end
|
|
end
|