2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-07-07 00:52:19 -04:00
|
|
|
module StatsCacheable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
module ClassMethods
|
|
|
|
def stats_cache_key
|
|
|
|
raise 'Stats cache key has not been set.'
|
|
|
|
end
|
|
|
|
|
|
|
|
def fetch_stats
|
|
|
|
raise 'Not implemented.'
|
|
|
|
end
|
|
|
|
|
|
|
|
# Could be configurable, multisite need to support it.
|
|
|
|
def recalculate_stats_interval
|
|
|
|
30 # minutes
|
|
|
|
end
|
|
|
|
|
|
|
|
def fetch_cached_stats
|
|
|
|
# The scheduled Stats job is responsible for generating and caching this.
|
2019-12-03 04:05:53 -05:00
|
|
|
stats = Discourse.redis.get(stats_cache_key)
|
2016-04-21 02:45:16 -04:00
|
|
|
stats = refresh_stats if !stats
|
|
|
|
JSON.parse(stats).with_indifferent_access
|
|
|
|
end
|
|
|
|
|
|
|
|
def refresh_stats
|
|
|
|
stats = fetch_stats.to_json
|
|
|
|
set_cache(stats)
|
|
|
|
stats
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_cache(stats)
|
|
|
|
# Add some extra time to the expiry so that the next job run has plenty of time to
|
|
|
|
# finish before previous cached value expires.
|
2019-12-03 04:05:53 -05:00
|
|
|
Discourse.redis.setex stats_cache_key, (recalculate_stats_interval + 5).minutes, stats
|
2015-07-07 00:52:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|