summaryrefslogtreecommitdiff
path: root/lib/gitlab/cache/import/caching.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/cache/import/caching.rb')
-rw-r--r--lib/gitlab/cache/import/caching.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/gitlab/cache/import/caching.rb b/lib/gitlab/cache/import/caching.rb
index ec94991157a..86441973941 100644
--- a/lib/gitlab/cache/import/caching.rb
+++ b/lib/gitlab/cache/import/caching.rb
@@ -113,6 +113,17 @@ module Gitlab
end
end
+ # Returns the values of the given set.
+ #
+ # raw_key - The key of the set to check.
+ def self.values_from_set(raw_key)
+ key = cache_key_for(raw_key)
+
+ Redis::Cache.with do |redis|
+ redis.smembers(key)
+ end
+ end
+
# Sets multiple keys to given values.
#
# mapping - A Hash mapping the cache keys to their values.