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/repository_hash_cache.rb')
-rw-r--r--lib/gitlab/repository_hash_cache.rb16
1 files changed, 12 insertions, 4 deletions
diff --git a/lib/gitlab/repository_hash_cache.rb b/lib/gitlab/repository_hash_cache.rb
index d2a7b450000..d479d3115a6 100644
--- a/lib/gitlab/repository_hash_cache.rb
+++ b/lib/gitlab/repository_hash_cache.rb
@@ -31,10 +31,18 @@ module Gitlab
"#{type}:#{namespace}:hash"
end
- # @param key [String]
- # @return [Integer] 0 or 1 depending on success
- def delete(key)
- with { |redis| redis.del(cache_key(key)) }
+ # @param keys [String] one or multiple keys to delete
+ # @return [Integer] the number of keys successfully deleted
+ def delete(*keys)
+ return 0 if keys.empty?
+
+ with do |redis|
+ keys = keys.map { |key| cache_key(key) }
+
+ Gitlab::Instrumentation::RedisClusterValidator.allow_cross_slot_commands do
+ redis.unlink(*keys)
+ end
+ end
end
# Check if the provided hash key exists in the hash.