summaryrefslogtreecommitdiff
path: root/lib/gitlab/patch/active_record_query_cache.rb
blob: 71d66bdbe029c7ce67e9ea610d9bebd393d4c1eb (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
# frozen_string_literal: true

# Fixes a bug where the query cache isn't aware of the shared
# ActiveRecord connection used in tests
# https://github.com/rails/rails/issues/36587

# To be removed with https://gitlab.com/gitlab-org/gitlab-ce/issues/64413

module Gitlab
  module Patch
    module ActiveRecordQueryCache
      # rubocop:disable Gitlab/ModuleWithInstanceVariables
      def enable_query_cache!
        @query_cache_enabled[connection_cache_key(current_thread)] = true
        connection.enable_query_cache! if active_connection?
      end

      def disable_query_cache!
        @query_cache_enabled.delete connection_cache_key(current_thread)
        connection.disable_query_cache! if active_connection?
      end

      def query_cache_enabled
        @query_cache_enabled[connection_cache_key(current_thread)]
      end

      def active_connection?
        @thread_cached_conns[connection_cache_key(current_thread)]
      end

      private

      def current_thread
        @lock_thread || Thread.current
      end
      # rubocop:enable Gitlab/ModuleWithInstanceVariables
    end
  end
end