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/redis/etag_cache.rb')
-rw-r--r--lib/gitlab/redis/etag_cache.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/gitlab/redis/etag_cache.rb b/lib/gitlab/redis/etag_cache.rb
deleted file mode 100644
index 6aafdc8e518..00000000000
--- a/lib/gitlab/redis/etag_cache.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Redis
- class EtagCache < ::Gitlab::Redis::Wrapper
- class << self
- def store_name
- 'Cache'
- end
-
- private
-
- def redis
- primary_store = ::Redis.new(Gitlab::Redis::Cache.params)
- secondary_store = ::Redis.new(Gitlab::Redis::SharedState.params)
-
- MultiStore.new(primary_store, secondary_store, name.demodulize)
- end
- end
- end
- end
-end