Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cache.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 433614a3007ad9192cfe00dc74721a962e598942 (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
# frozen_string_literal: true

module Gitlab
  module Cache
    class << self
      # Utility method for performing a fetch but only
      # once per request, storing the returned value in
      # the request store, if active.
      def fetch_once(key, **kwargs)
        Gitlab::SafeRequestStore.fetch(key) do
          Rails.cache.fetch(key, **kwargs) do
            yield
          end
        end
      end

      # Hook for EE
      def delete(key)
        Rails.cache.delete(key)
      end
    end
  end
end

Gitlab::Cache.prepend_mod