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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/database/postgresql_adapter/type_map_cache.rb')
-rw-r--r--lib/gitlab/database/postgresql_adapter/type_map_cache.rb44
1 files changed, 44 insertions, 0 deletions
diff --git a/lib/gitlab/database/postgresql_adapter/type_map_cache.rb b/lib/gitlab/database/postgresql_adapter/type_map_cache.rb
new file mode 100644
index 00000000000..ff66d9115ab
--- /dev/null
+++ b/lib/gitlab/database/postgresql_adapter/type_map_cache.rb
@@ -0,0 +1,44 @@
+# frozen_string_literal: true
+
+# Caches loading of additional types from the DB
+# https://github.com/rails/rails/blob/v6.0.3.2/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb#L521-L589
+
+# rubocop:disable Gitlab/ModuleWithInstanceVariables
+
+module Gitlab
+ module Database
+ module PostgresqlAdapter
+ module TypeMapCache
+ extend ActiveSupport::Concern
+
+ TYPE_MAP_CACHE_MONITOR = ::Monitor.new
+
+ class_methods do
+ def type_map_cache
+ TYPE_MAP_CACHE_MONITOR.synchronize do
+ @type_map_cache ||= {}
+ end
+ end
+ end
+
+ def initialize_type_map(map = type_map)
+ TYPE_MAP_CACHE_MONITOR.synchronize do
+ cached_type_map = self.class.type_map_cache[@connection_parameters.hash]
+ break @type_map = cached_type_map if cached_type_map
+
+ super
+ self.class.type_map_cache[@connection_parameters.hash] = map
+ end
+ end
+
+ def reload_type_map
+ TYPE_MAP_CACHE_MONITOR.synchronize do
+ self.class.type_map_cache[@connection_parameters.hash] = nil
+ end
+
+ super
+ end
+ end
+ end
+ end
+end