summaryrefslogtreecommitdiff
path: root/app/models/concerns/redis_cacheable.rb
blob: b889f4202dc982b554c66d77ce2636e4cb0ef3b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
module RedisCacheable
  extend ActiveSupport::Concern
  include Gitlab::Utils::StrongMemoize

  CACHED_ATTRIBUTES_EXPIRY_TIME = 24.hours

  class_methods do
    def cached_attr_reader(*attributes)
      attributes.each do |attribute|
        define_method("#{attribute}") do
          cached_attribute(attribute) || read_attribute(attribute)
        end
      end
    end
  end

  def cached_attribute(attribute)
    (cached_attributes || {})[attribute]
  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
  end

  private

  def cache_attribute_key
    "cache:#{self.class.name}:#{self.id}:attributes"
  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
end