2020-02-24 04:08:51 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Interface to the Redis-backed cache store to keep track of complete cache keys
|
|
|
|
# for a ReactiveCache resource.
|
|
|
|
module Gitlab
|
|
|
|
class SetCache
|
|
|
|
attr_reader :expires_in
|
|
|
|
|
|
|
|
def initialize(expires_in: 2.weeks)
|
|
|
|
@expires_in = expires_in
|
|
|
|
end
|
|
|
|
|
2021-06-28 11:08:03 -04:00
|
|
|
# NOTE Remove as part of https://gitlab.com/gitlab-org/gitlab/-/issues/331319
|
|
|
|
def old_cache_key(key)
|
2020-02-24 04:08:51 -05:00
|
|
|
"#{key}:set"
|
|
|
|
end
|
|
|
|
|
2021-06-28 11:08:03 -04:00
|
|
|
def cache_key(key)
|
2021-05-25 11:10:33 -04:00
|
|
|
"#{cache_namespace}:#{key}:set"
|
|
|
|
end
|
|
|
|
|
2020-03-18 11:09:45 -04:00
|
|
|
# Returns the number of keys deleted by Redis
|
2020-03-16 17:09:21 -04:00
|
|
|
def expire(*keys)
|
2020-03-18 11:09:45 -04:00
|
|
|
return 0 if keys.empty?
|
|
|
|
|
2020-03-16 17:09:21 -04:00
|
|
|
with do |redis|
|
2021-05-25 11:10:33 -04:00
|
|
|
keys_to_expire = keys.map { |key| cache_key(key) }
|
2021-06-28 11:08:03 -04:00
|
|
|
keys_to_expire += keys.map { |key| old_cache_key(key) } # NOTE Remove as part of #331319
|
2020-06-24 17:08:46 -04:00
|
|
|
|
|
|
|
Gitlab::Instrumentation::RedisClusterValidator.allow_cross_slot_commands do
|
2021-05-25 11:10:33 -04:00
|
|
|
redis.unlink(*keys_to_expire)
|
2020-06-24 17:08:46 -04:00
|
|
|
end
|
2020-03-16 17:09:21 -04:00
|
|
|
end
|
2020-02-24 04:08:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def exist?(key)
|
|
|
|
with { |redis| redis.exists(cache_key(key)) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def write(key, value)
|
|
|
|
with do |redis|
|
|
|
|
redis.pipelined do
|
|
|
|
redis.sadd(cache_key(key), value)
|
|
|
|
|
|
|
|
redis.expire(cache_key(key), expires_in)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
value
|
|
|
|
end
|
|
|
|
|
|
|
|
def read(key)
|
|
|
|
with { |redis| redis.smembers(cache_key(key)) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def include?(key, value)
|
|
|
|
with { |redis| redis.sismember(cache_key(key), value) }
|
|
|
|
end
|
|
|
|
|
2021-03-26 20:09:34 -04:00
|
|
|
# Like include?, but also tells us if the cache was populated when it ran
|
|
|
|
# by returning two booleans: [member_exists, set_exists]
|
|
|
|
def try_include?(key, value)
|
|
|
|
full_key = cache_key(key)
|
|
|
|
|
|
|
|
with do |redis|
|
|
|
|
redis.multi do
|
|
|
|
redis.sismember(full_key, value)
|
|
|
|
redis.exists(full_key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-02-24 04:08:51 -05:00
|
|
|
def ttl(key)
|
|
|
|
with { |redis| redis.ttl(cache_key(key)) }
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def with(&blk)
|
|
|
|
Gitlab::Redis::Cache.with(&blk) # rubocop:disable CodeReuse/ActiveRecord
|
|
|
|
end
|
2021-05-25 11:10:33 -04:00
|
|
|
|
|
|
|
def cache_namespace
|
|
|
|
Gitlab::Redis::Cache::CACHE_NAMESPACE
|
|
|
|
end
|
2020-02-24 04:08:51 -05:00
|
|
|
end
|
|
|
|
end
|