2018-02-05 11:07:49 -05:00
|
|
|
module RedisCacheable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
|
|
|
|
CACHED_ATTRIBUTES_EXPIRY_TIME = 24.hours
|
|
|
|
|
|
|
|
class_methods do
|
|
|
|
def cached_attr_reader(*attributes)
|
2018-05-08 06:20:54 -04:00
|
|
|
attributes.each do |attribute|
|
2018-05-16 15:49:09 -04:00
|
|
|
define_method(attribute) do
|
2018-05-16 16:43:38 -04:00
|
|
|
raise ArgumentError, "Not a database attribute" unless self.has_attribute?(attribute)
|
|
|
|
|
2018-05-16 15:23:43 -04:00
|
|
|
cached_attribute(attribute) || read_attribute(attribute)
|
2018-05-08 06:20:54 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-02-05 11:07:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def cached_attribute(attribute)
|
2018-05-16 15:23:43 -04:00
|
|
|
cached_value = (cached_attributes || {})[attribute]
|
|
|
|
cast_value_from_cache(attribute, cached_value) if cached_value
|
2018-02-05 11:07:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def cache_attributes(values)
|
|
|
|
Gitlab::Redis::SharedState.with do |redis|
|
|
|
|
redis.set(cache_attribute_key, values.to_json, ex: CACHED_ATTRIBUTES_EXPIRY_TIME)
|
|
|
|
end
|
2018-05-11 12:36:16 -04:00
|
|
|
|
|
|
|
clear_memoization(:cached_attributes)
|
2018-02-05 11:07:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def cache_attribute_key
|
2018-02-05 14:43:23 -05:00
|
|
|
"cache:#{self.class.name}:#{self.id}:attributes"
|
2018-02-05 11:07:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def cached_attributes
|
|
|
|
strong_memoize(:cached_attributes) do
|
|
|
|
Gitlab::Redis::SharedState.with do |redis|
|
|
|
|
data = redis.get(cache_attribute_key)
|
|
|
|
JSON.parse(data, symbolize_names: true) if data
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-05-15 15:55:16 -04:00
|
|
|
|
|
|
|
def cast_value_from_cache(attribute, value)
|
|
|
|
if self.class.column_for_attribute(attribute).respond_to?(:type_cast_from_database)
|
|
|
|
self.class.column_for_attribute(attribute).type_cast_from_database(value)
|
|
|
|
else
|
|
|
|
self.class.type_for_attribute(attribute).cast(value)
|
|
|
|
end
|
|
|
|
end
|
2018-02-05 11:07:49 -05:00
|
|
|
end
|