2013-08-03 06:31:25 +08:00
|
|
|
module Jobs
|
2013-08-08 01:25:05 +08:00
|
|
|
class DashboardStats < Jobs::Scheduled
|
2014-02-06 07:14:41 +08:00
|
|
|
every 30.minutes
|
2013-08-03 06:31:25 +08:00
|
|
|
|
|
|
|
def execute(args)
|
2015-06-25 08:42:08 +08:00
|
|
|
stats = AdminDashboardData.fetch_stats.as_json
|
2013-08-03 06:31:25 +08:00
|
|
|
|
|
|
|
# Add some extra time to the expiry so that the next job run has plenty of time to
|
|
|
|
# finish before previous cached value expires.
|
2015-06-25 08:42:08 +08:00
|
|
|
$redis.setex AdminDashboardData.stats_cache_key, (AdminDashboardData.recalculate_interval + 5).minutes, stats.to_json
|
2013-08-03 06:31:25 +08:00
|
|
|
|
2015-06-25 08:42:08 +08:00
|
|
|
stats
|
2013-08-03 06:31:25 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2013-09-02 15:14:41 +08:00
|
|
|
end
|