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 'app/models/concerns/reactive_caching.rb')
-rw-r--r--app/models/concerns/reactive_caching.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/models/concerns/reactive_caching.rb b/app/models/concerns/reactive_caching.rb
index 010e0018414..4b472cfdf45 100644
--- a/app/models/concerns/reactive_caching.rb
+++ b/app/models/concerns/reactive_caching.rb
@@ -52,6 +52,13 @@ module ReactiveCaching
end
end
+ def with_reactive_cache_set(resource, opts, &blk)
+ data = with_reactive_cache(resource, opts, &blk)
+ save_keys_in_set(resource, opts) if data
+
+ data
+ end
+
# This method is used for debugging purposes and should not be used otherwise.
def without_reactive_cache(*args, &blk)
return with_reactive_cache(*args, &blk) unless Rails.env.development?
@@ -65,6 +72,12 @@ module ReactiveCaching
Rails.cache.delete(alive_reactive_cache_key(*args))
end
+ def clear_reactive_cache_set!(*args)
+ cache_key = full_reactive_cache_key(args)
+
+ reactive_set_cache.clear_cache!(cache_key)
+ end
+
def exclusively_update_reactive_cache!(*args)
locking_reactive_cache(*args) do
key = full_reactive_cache_key(*args)
@@ -86,6 +99,16 @@ module ReactiveCaching
private
+ def save_keys_in_set(resource, opts)
+ cache_key = full_reactive_cache_key(resource)
+
+ reactive_set_cache.write(cache_key, "#{cache_key}:#{opts}")
+ end
+
+ def reactive_set_cache
+ Gitlab::ReactiveCacheSetCache.new(expires_in: reactive_cache_lifetime)
+ end
+
def refresh_reactive_cache!(*args)
clear_reactive_cache!(*args)
keep_alive_reactive_cache!(*args)